摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 void main(void) 9 {10 int fd,size,len;11 char *buf="Hel... 阅读全文
posted @ 2015-02-27 23:02 ht-beyond 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 以该程序为例: 1 /*test.c*/ 2 #include 3 int sum(int m); 4 int main() 5 { 6 int i,n=0; 7 sum(50); 8 for(i=1; iThis is free software:... 阅读全文
posted @ 2015-02-27 17:04 ht-beyond 阅读(450) 评论(0) 推荐(0) 编辑
摘要: #includeint main(){ printf("Hello world !\n"); return 0;}1.预处理阶段[ht@localhost hello]$ gcc -E hello.c -o hello.iGcc进行预处理,把“stdio.h”的内容插入到... 阅读全文
posted @ 2015-02-27 16:20 ht-beyond 阅读(297) 评论(0) 推荐(0) 编辑