โช Choose the correct option.
#include
int main() {
int x = 10, y = 20, z = 5, i;
i = x < y < z;
printf("%d ", i);
return 0;
}
#include
int main() {
int x = 10, y = 20, z = 5, i;
i = x < y < z;
printf("%d ", i);
return 0;
}