Start here
Reference
Product components
Coding environments
Administration
Community
Legal
The condition of a conditional expression is always true or always false.
1 class IntSize { 2 void GetIntSize() { 3 return (sizeof(int) > 4 ? sizeof(int) : 4); // defect - the condition is constant 4 } 5 }