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
None of These
12PP
12PP345

ANSWER DOWNLOAD EXAMIANS APP