Home » C Programming » Declarations and Initializations

What is the output of the program #include int main() { int x = 10, y = 20, z = 5, i; i = x < y < z; printf("%d\n", i); return 0; }

Correct Answer: 1

Explanation:

Since x < y turns to be TRUE it is replaced by 1. Then 1 < z is compared and to be TRUE. The 1 is assigned to i.

← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion