Math, asked by tejasriamruthaa, 5 months ago

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

Answers

Answered by souravsarkar045
1

Answer:

The output will be 1.

And you have declare "i" as a integer first.

Step-by-step 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.

Similar questions