What will be the output of the following code?
void main()
{
static main;
int x;
x=call(mai);
clrscr();
printf ("%d",x);
getch();
}
int call(int address)
{
address++;
return address;
}

Posted on by