Home » C Programming » Control Instructions

What will be the output of the program? #include int main() { int k, num = 30; k = (num < 10)? 100 : 200; printf("%d\n", num); return 0; }

Correct Answer: 30

← Previous Question Next Question→

More Questions from Control Instructions

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion