首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
dzhack的代码贴
→
全部
[C语言]dzhack 贴于 2014-11-06 15:13:21
#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
[C语言]dzhack 贴于 2014-11-06 15:13:08
#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
全部(2)
C语言(2)