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
12
Garbage Value
14
15

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is function?

Function is the fundamental modular unit. A function is usually designed to perform a specific task.
Function is a block of statements that perform some specific task.
Function is a block of code that performs a specific task. It has a name and it is reusable.
All of these

ANSWER DOWNLOAD EXAMIANS APP