What will be the output of the program in 16 bit platform (Turbo C under DOS)?

#includestdio.h

int main()
{
int fun();
int i;
i = fun();
printf("%d\n", i);
return 0;
}
int fun()
{
_AX = 1990;
}

Posted on by