123
int Variable( 10 ); if( Variable ) // do something...
1234567891011121314
int n = ...; bool b = n; //implicit cast //now if( n == 0 ) assert( b == false ); else assert( b == true ); //or if( b ) assert( n != 0 ); else assert( n == 0 );