0

int main() { int x=3; cout<<(x<5) +1; return 0; }

Explain the output please

1st Jul 2017, 2:53 AM
Kushagra Agarwal
Kushagra Agarwal - avatar
2 Respostas
+ 1
cout<<(x<5)+1; here x<5 ,so the output will be 1. the final answer will be 2 [cout<<(1)+1] if x<5 statement is true output will be 1 if it is false output will be 0 (its like bool)
1st Jul 2017, 3:18 AM
‎ ‏‏‎Anonymous Guy