首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
小朴少的代码贴
→
C语言
[C语言]数据结构的无错误问题,但是有问题
#include<stdio.h>
#include<stdlib.h>
#include<malloc.h>
typedef struct student
{
char num[6];
char name[8];
int English;
int math;
int tax;//名次
int score;
struct student *next;
......................
阅读全部
| 2013年6月23日 23:45
1
小朴少
全部(1)
C语言(1)