用c编写的以文件保存的学生信息管理系统

日期:2011-06-30 09:17:56 人气:2

用c编写的以文件保存的学生信息管理系统

#include "stdio.h" /*I/O函数*/ #include "string.h" /*字符串函数*/ #include "stdlib.h" #define N 100 /*定义常数*/ typedef struct student { int order; char num[11]; char name[10
    A+
热门评论