Loops
-  What will be the output of the following C code?#include <stdio.h> 
 void main()
 {
 int n = 5, L;
 if (n == 5)
 goto Read;
 Read: printf("%d ", n);
 printf("Interview Mania");
 }
- 
                        View Hint View Answer Discuss in Forum NA Correct Option: C5 Interview Mania 
-  goto can be used to jump from main() to within a function.
- 
                        View Hint View Answer Discuss in Forum NA Correct Option: Afalse 
-  What will be the output of the following C code?#include <stdio.h> 
 int main()
 {
 printf("Ajit ");
 goto Label1;
 printf("Abhay ");
 Label1:goto Label2;
 printf("Sumi ");
 Label2:printf("Imroj ");
 }
- 
                        View Hint View Answer Discuss in Forum NA Correct Option: DAjit Imroj 
-  What will be the output of the following C code?#include <stdio.h> 
 int main()
 {
 int k = 0, L = 0;
 while (Level1: k < 5)
 {
 k++;
 while (L < 6)
 {
 printf("Interveiw Maina\n");
 goto Level1;
 }
 }
 }
- 
                        View Hint View Answer Discuss in Forum NA Correct Option: CCompilation Error main.c: In function ‘main’: 
 main.c:5:16: error: ‘Level1’ undeclared (first use in this function)
 while (Level1: k < 5)
 ^~~~~~
 main.c:5:16: note: each undeclared identifier is reported only once for each function it appears in
 main.c:5:22: error: expected ‘)’ before ‘:’ token
 while (Level1: k < 5)
 ^
 main.c:11:17: error: label ‘Level1’ used but not defined
 goto Level1;
-  What will be the output of the following C code?#include <stdio.h> 
 int main()
 {
 printf("Krishna ");
 goto Label;
 printf("Imroj ");
 }
 void fun()
 {
 Label: printf("Abhay ");
 }
- 
                        View Hint View Answer Discuss in Forum NA Correct Option: DCompilation Error main.c: In function ‘main’: 
 main.c:5:9: error: label ‘Label’ used but not defined
 goto Label;
 
	