Discussion :: Testing sawaal
-
Output of the Program :
main()
{
int i = 1;
while (i <= 5)
{
printf( "%d", i );
if (i > 2) goto here;
i++;
}
}
fun()
{
here : printf( "PP" );
}
Answer : Option C
Explanation :
Compiler error: Undefined label 'here' in function main
Be The First To Comment