C Programming
Determine Output:void main(){ char s[]="man"; int i; for(i=0; s[i]; i++) printf("%c%c%c%c ", s[i], *(s+i), *(i+s), i[s]);}

None of These
mmmm nnnn aaaa
Compiler Error
mmm nnn aaa

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP