C Programming
What will be the correct output of the following program?#includevoid main(){ char str[] = "C EXAMINATION", rev[17]; int i = strlen(str), j=0; for( ; i>=0; rev[j++] = str[i--]) rev[j] = str[j] ; puts(rev);}

Syntax error
NOITANIMAXE
C
NOITANIMAXE C
No output at all.

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP