c语言学习--结构体
摘要:
定义一个结构体的一般形式为:struct 结构名{ 成员列表;};例:main(){ struct stu { int num; char *name; char sex; float score; }boy1, boy2; boy1.num = 102; boy1.name = "Zhang ping"; printf("input sex and score\n"); scanf("%c %f", &boy1.sex, &boy1.score); boy2 = boy1; print... 阅读全文
posted @ 2012-10-09 15:19 zqiang3 阅读(147) 评论(0) 推荐(0) 编辑