C Programming
Determine Output:void main(){ char *p="hi friends", *p1; p1=p; while(*p!='\0') ++*p++; printf("%s", p1);}

ij!gsjfoet
hj grjeodt
hi friends
None of These

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

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

ANSWER DOWNLOAD EXAMIANS APP