C Programming
What will be the output of given program?#includevoid main(){ int i=1, j=-1; if((printf("%d", i)) < (printf("%d", j))) printf("%d", i); else printf("%d", j);}

complier error
1
1 -1 1
1 -1 -1
-1

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP