WBJECA 2025 — Computer PYQ
WBJECA | Computer | 2025What will be the output of the following C code?
#include <stdio.h>
int main() {
int x;
x = 4 < 3 ? 100 : 3 == 3 > 2 ? 50 : 75;
printf("%d", x);
return 0;
}

What will be the output of the following C code?
#include <stdio.h>
int main() {
int x;
x = 4 < 3 ? 100 : 3 == 3 > 2 ? 50 : 75;
printf("%d", x);
return 0;
}