上一页 1 ··· 4 5 6 7 8
摘要: Variable storage space 阅读全文
posted @ 2015-10-11 18:58 Jonas0608 阅读(124) 评论(0) 推荐(0) 编辑
摘要: the nature of pointerconst keyword const int* p int const *p int* const p int const a const int aint a = 3; int b = 5 ; int* const p = &a; ... 阅读全文
posted @ 2015-10-06 21:56 Jonas0608 阅读(187) 评论(0) 推荐(0) 编辑
摘要: c language keywords 阅读全文
posted @ 2015-10-05 22:15 Jonas0608 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 1.宏替换,完全展开替换,注意带来副作用#include #define 打印语句 printf(“hello”);Voidmain(void){ If(1)打印语句;; Else ….;}Voidmain(void){ If(1) printf(“hello”); ; Else ….;}2... 阅读全文
posted @ 2015-10-05 21:37 Jonas0608 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 程序编译链接原理预处理:.c -> .i gcc -E hello.c -o hello.i编译:.i / .c -> .sgcc -S hello.i -o hello.s汇编:.s -> .ogcc -c hello.s -o hello.o链接:.o -> 可执行程序appgcc hel... 阅读全文
posted @ 2015-10-05 20:22 Jonas0608 阅读(210) 评论(0) 推荐(0) 编辑
摘要: Basic VI 阅读全文
posted @ 2015-09-25 15:30 Jonas0608 阅读(141) 评论(0) 推荐(0) 编辑
摘要: Linux System Programming Syllabus 阅读全文
posted @ 2015-09-23 16:24 Jonas0608 阅读(123) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8