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

13
14
12
11
Compilation error

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP