相关代码 |
|
//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; }
相关资源 |
|