C Programming
What is the output of the following statements?int b=15, c=5, d=8, e=8, a;a = b>c ? c>d ? 12 : d>e ? 13 : 14 : 15;printf("%d", a);
50, 13, 24, 13
50, 13, 24, 50
13, 13, 24, 13
13, 10, 24, 50
50, 13, 11, 13
ANSWER
DOWNLOAD EXAMIANS APP
↑