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