Start here
Reference
Product components
Coding environments
Administration
Community
Legal
The condition of an 'if' statement is always true or always false.
1 class Thing { 2 void DoAction() { 3 if (sizeof(char) < 2) // defect - the condition is constant 4 { 5 /* ... */ 6 } 7 } 8 }