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

15
Garbage Value
12
14
13

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

Extracting a substring out of a string.
Merging two strings.
Partitioning the string into two strings.
Comparing the two strings to define the larger one.
Combining two strings.

ANSWER DOWNLOAD EXAMIANS APP