1 #inlcude "" 和<> 的区别
预处理器的搜索路径的顺序不同。为了缩短编译时间?这样做意义大吗?
预处理器的搜索路径有两种:predefined default location和current directory。
<>先搜预定义默认路径,再搜当前路径,议案用于系统库的头文件
""先搜当前路径,再搜预定义默认路径,一般用于用户的自定义头文件
什么是预定义默认路径,什么是当前路径?
2 declaration and definition and initialization and assignment of variables
``Definition''refers to the place where the variable is created or assigned storage;
``declaration''refers to places where the nature of the variable is stated but no storage is allocated
对局部变量来说,声明和定义是在一起的,初始化局部变量是推荐的,甚至强制要求的。
对全局变量来说,有且只有一个定义,但是在使用的地方需要声明,告诉编译器,这个是"外部"的变量。我想这个是因为编译器的关系,每一个文件都需要单独编译生成.obj文件,然后链接起来。这个时候,如果不声明external,连接器就会报命名冲突?
全局变量的事还需要进一步明确
全局变量推荐使用吗?不推荐?
3 \t means tab. what does it exactly mean? four spaces?No
4 declaration and definiton of functions
5 main函数应该是return 0表示正确返回,非0是异常返回
6 指针和数组名
7如果int 长度不确定,是不是只用char,short,long,消除二义性和对系统的依赖?