โช Choose the correct option.
What is the output of the following program on GCC compiler?
#include
int main() {
int x = 10, y = 20, z = 5, i;
i = x < y < z;
printf("%d ", i);
return 0;
}
What is the output of the following program on GCC compiler?
What is the output of the following program on GCC compiler?
#include
int main() {
int x = 10, y = 20, z = 5, i;
i = x < y < z;
printf("%d ", i);
return 0;
}