C Programming
Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=10 && y++>11) printf("%d", y); else printf("%d", y);}

12
14
13
11
Compilation error

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP