首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
zyx1989的代码贴
→
C语言
[C语言]我写的一个程序,请大家运行指正
#include<stdio.h>
#include<malloc.h>
#include<stdlib.h>
#include<string.h>
typedef struct student
{
int num;
int age;
char pc[20];
char name[20];
struct student *link;
}stud;
......................
阅读全部
| 2011年11月6日 02:39
[C语言]我写的一个程序,请大家运行指正
#include<stdio.h>
#include<malloc.h>
#include<stdlib.h>
#include<string.h>
typedef struct student
{
int num;
int age;
char pc[20];
char name[20];
struct student *link;
}stud;
......................
阅读全部
| 2011年11月6日 02:38
1
zyx1989
全部(2)
C语言(2)