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

None of These
Compiler Error
12PP345
12PP

ANSWER DOWNLOAD EXAMIANS APP