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]);}

mmmm nnnn aaaa
mmm nnn aaa
Compiler Error
None of These

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

need not start on the first column
comes before the first executable statement
has # as the first character
need not start on a new line

ANSWER DOWNLOAD EXAMIANS APP