Home » Technical Questions » Programming

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

Correct Answer: Compilation error

Explanation:

Compiler error: Undefined label 'here' in function main


← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion