Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 747 Bytes

语义陷阱.md

File metadata and controls

27 lines (16 loc) · 747 Bytes

Table of Contents generated with DocToc

空指针并非空字符串,常数0被转换为指针使用时,绝对不可以被解引用

只有四个运算符(&&||?:,和,)存在特定的求值顺序

while(i < n)
	y[i] = x[i++],i什么时候++,不能保证

要考虑整数溢出的情况

导航

目录

上一章:语法陷阱.md

下一章:连接