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

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!