What is the output of the following program on GCC compiler?
Practice Bitwise Operators –
What is the output of the following program on GCC compiler?
#include<stdio.h>
int main() {
int x = 10, y = 20, z = 5, i;
i = x < y < z;
printf("%d
", i);
return 0;
}