摘要:
Variable storage space 阅读全文
摘要:
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; ... 阅读全文
摘要:
c language keywords 阅读全文
摘要:
1.宏替换,完全展开替换,注意带来副作用#include #define 打印语句 printf(“hello”);Voidmain(void){ If(1)打印语句;; Else ….;}Voidmain(void){ If(1) printf(“hello”); ; Else ….;}2... 阅读全文
摘要:
程序编译链接原理预处理:.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... 阅读全文
摘要:
Basic VI 阅读全文
摘要:
Linux System Programming Syllabus 阅读全文