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);

13
15
Garbage Value
12
14

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

Takes care of include files
Takes care of macros
Acts before compilation
Takes care of conditional compilation
All of these

ANSWER DOWNLOAD EXAMIANS APP