首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴RebelRebel的代码贴全部
/*我编写了个程序,源代码如下:*/
#include <stdio.h>
#define SIZE 2
struct Student_type
{
   char name[10];
   int num;
   int age;
   char addr[15]; } stud[SIZE];
void save()
{
   FILE *fp;
......................
阅读全部 | 2013年4月3日 17:33
1
RebelRebel