一款用纯C语言编写的大学生成绩管理系统

源代码在线查看: main.c

软件大小: 131 K
上传用户: gdmichael
关键词: C语言 编写 大学生 管理系统
下载地址: 免注册下载 普通下载 VIP

相关代码

				//main主函数测试
				#include "functions.c"
				
				int main()
				{
					Record *head = NULL;
					char select;
					head = Init(head);
					
					do {
						MainMenu();
						printf("Enter your selection:");
						fflush(stdin);
						scanf ("%c", &select);
						SelectMain(head, select);
					} while (select != '8');
				
					return 0;
				}			

相关资源