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
Compiler Error
mmmm nnnn aaaa
mmm nnn aaa

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

Helps to avoid repeating a set of statements many times.
Enhances the logical clarity of the program.
Helps to avoid repeated programming across programs.
All of these
Makes the debugging task easier.

ANSWER DOWNLOAD EXAMIANS APP