#include<stdio.h>
int main()
{
int x = 10, y = 20, z = 5,
i = x < y<z;
printf("%d", i).
return 0
}
Answers
Answered by
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
English,
4 months ago
Environmental Sciences,
4 months ago
Hindi,
4 months ago
Hindi,
8 months ago
Computer Science,
1 year ago
Math,
1 year ago
Math,
1 year ago