首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴zyx1989的代码贴全部
#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
#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