1.preprocessor directives
#include #define; #if #endif; #ifdef #ifndef
#ifndef stdio.h
----防止头文件的重复包含
#define stdio.h
#if 0/1
----调试某部分代码 去掉/使用(中间部分的代码)
#endif
#define SUM (X+Y) 注意括号的使用
/* comments */
comment can't be nested.
/*。。。/*。。。 */。。。*/will be error