经典C语言程序100例(71-80)---------------转自C语言经典论坛

【程序71】 题目:编写input()和output()函数输入,输出5个学生的数据记录。 1.程序分析: 2.程序源代码: #define N 5 struct student { char num[6];  char name[8];  int score[4]; } stu[N]; input(stu) struct student stu[]; { int i,j;  for(i=0;i<
相关文章
相关标签/搜索