Skip to content

Latest commit

 

History

History
3 lines (2 loc) · 153 Bytes

4.16.md

File metadata and controls

3 lines (2 loc) · 153 Bytes

if (p = getPtr() != 0) is the same with if (p = (getPtr() != 0)) and should be if ((p = getPtr()) != 0).

if (i = 1024) may be if (i == 1024).