Question 12
Consider the below C program.
#include <stdio.h>
int main() { int a = 10, b = 20, c = 30; b++ > 20 ? a-- : ++c; printf("%d %d %d", a, b, c); return 0;}What will be the output of the above program?
10 20 30
9 21 31
10 21 31
10 20 31