首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴thankyou1的代码贴全部
#include<stdio.h>
#include<stdlib.h>
#define LEN sizeof(struct stu)
struct stu
{
int sno;
char name[10];
float score[3];
struct stu *next; 
};
int main()
{
......................
阅读全部 | 2015年6月24日 18:14
1
thankyou1