What is the output of the following program on GCC compiler?

Loading

โœช 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;

}

A. 0
B. 1
C. Compiler Error
D. None of these