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
P
N
M

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

Takes care of include files
Takes care of macros
All of these
Acts before compilation
Takes care of conditional compilation

ANSWER DOWNLOAD EXAMIANS APP