C
Programming and Technical
output?
main()
{i
nt i=1;
while (i2)
goto here;
i++;
}} fun()
{
here:
printf("PP");
}
A. Compiler error: Undefined label 'here' in function main
Explanation: Labels have functions scope, in other words the scope of the labels is limited to functions. The label 'here' is available in function fun() Hence it is not visible in function main
Read Solution (Total 0)
C Other Question