
C语言
文章平均质量分 75
myserverthepeople
呵呵性格开放,喜欢交朋友
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C语言排序与查找实例
1、顺序查找学号姓名成绩1001ANN931002LILY951003LUCY981004TOM100编写一上程序,要求输出1001编号同学的具体信息 #include "stdio.h"typedef struct student{ int id;//学原创 2012-05-12 22:34:13 · 2686 阅读 · 0 评论 -
C语言动态内存分配malloc/realloc/calloc
http://blog.sina.com.cn/s/blog_626872bd0100pytz.html原创 2012-10-20 11:44:24 · 739 阅读 · 0 评论 -
typedef的用法程序
第一个程序:#include typedef int abc;//为int 重新多取一个名字,abc等价于intstruct Student{ int sid; char name[100]; char sex;};int main(void){ int i=0;//等价于abc i =10; abc j=20; printf("%d\n",j);原创 2012-10-21 10:44:31 · 705 阅读 · 0 评论