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

Compiler Error
12PP
12PP345
None of These

ANSWER DOWNLOAD EXAMIANS APP