C Programming
What will be the output of the following program code?main(){ static int var = 5; printf("%d ", var--); if(var) main();}

5 5 5 5 5
None of these
5 4 3 2 1
Infinite Loop
Compilation Error

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP