Q. What will be output of the following c code?
Code:void main(){
static main;
int x;
x=call(main);
clrscr();
printf(“%d “,x);
getch();
}
int call(int address){
address++;
return address;
}
β
Correct Answer: (B)
1