首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
thankyou1的代码贴
→
全部
[C语言]头插法
#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
全部(1)
C语言(1)