welcome.c

来自「图书管理系统」· C语言 代码 · 共 19 行

C
19
字号
/* file_name:	welcome.c
 * author:	wangtiezhen miuliang @ Xidian University
 * description:	
 */
extern void welcome(void);


extern void welcome(void)
{
	if(user.type == teacher)
		printf("Hi,commander, %s\n", user.name);
	if(user.type == student)
		printf("Hello,student, %s\n", user.name);
	return;
}



⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?