Question: What will be output if you will compile and execute the following c code?
#include<stdio.h>
int main(){
goto abc;
printf("main");
return 0;
}
void dispaly(){
abc:
printf("display");
}
A
B
C
D
E
main
B
display
C
maindisplay
D
displaymain
E
Compiler error
Note: Not available