C Programming
Determine Output:#includevoid main(){ char s[]={'a','b','c','n','c','\0'}; char *p, *str, *str1; p=&s[3]; str=p; str1=s; printf("%c", ++*p + ++*str1-32);}

None of These
N
P
M

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP