R
Q. Determine Output
void main() { int i=1; while(i<=5) { printf("%d", i); if(i>2) goto here; i++; } } fun() { here: printf("PP"); }
Compiler error: Undefined label 'here' in function main 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.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Choose a correct statement about C language break; statement.
Q. Which of the following operators can be applied on structure variables?
Q. What will be the output of the following C code?
Q. What is the value of an array element which is not initialized?
Q. Can we declare function inside structure of C Programming?
Q. What will be the output of the following C code?
Discusssion
Login to discuss.