首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴dzhack的代码贴全部
#include<stdio.h>
#include<malloc.h>
#define LEN sizeof(struct Student)

void main()
struct Student                //结构体声明
{
long num;
int score;
struct Student* next;
};
int n;
阅读全部 | 2014年11月6日 15:13
#include<stdio.h>
#include<malloc.h>
#define LEN sizeof(struct Student)

void main()
struct Student                //结构体声明
{
long num;
int score;
struct Student* next;
};
int n;
阅读全部 | 2014年11月6日 15:13
1
dzhack