首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴踏雪昆仑行的代码贴C语言
#include <stdio.h> 
#include <stdlib.h> 
#include <string.h>

#define N 2
struct  student 
{
 char name[10];
 char no[10];
 char sex;
 int  age;
 char bnote[100];
......................
阅读全部 | 2013年7月13日 21:25
1
踏雪昆仑行