C Programming
Determine Output:void main(){ int i=1; while(i<=5) { printf("%d", i); if(i>2) goto here; i++; }}fun(){ here: printf("PP");}

12PP345
Compiler Error
None of These
12PP

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

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

ANSWER DOWNLOAD EXAMIANS APP