首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴xiaogongwei的代码贴全部
#include <stdio.h>
#include <malloc.h>
struct students * create(int n);//链表的建立
void print(struct students *head);//链表的输出
struct students * del(struct students *head,int num);
struct students
{
    char name[20];
    int number;
    int sco;
    struct students *next;
};
......................
阅读全部 | 2012年1月6日 05:57
1
xiaogongwei