Computer Science, asked by tejasriamruthaa, 8 months ago

#include<stdio.h>
int main()
{
int x = 10, y = 20, z = 5, 1;
i = x < y <z;
printf("%d", i);
return 0;
}​

Answers

Answered by Pablu
1

Answer:

1 will be printed

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.

Hope you understand. Please mark me the brainliest

Similar questions