首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴c编程新手的代码贴C语言
#include <stdio.h>
 #include <stdlib.h> 
#include <string.h>
 #define MAX_TABLE  50  
typedef struct {    
char  name[15];    
int  score;    
int mingci; }Stud;  
typedef struct { 
Stud *elem;    
int length; 
}Student;  
......................
阅读全部 | 2012年12月17日 18:15
1
c编程新手