C - Operators and Expressions
What is the output of this C code?
int x = 5;
int y = (x > 3) ? 10 : 20;
printf("%d", y);int x = 5;
int y = (x > 3) ? 10 : 20;
printf("%d", y);15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions