12345678910



Question 1: 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");
}

1. main
2. display
3. Compiler error
4. maindisplay