What is the output of the following code?
#includestdio.h
int main()
{
int m=1;
void what()
{
int m=10;
printf("%d",m);
}
what();
printf("\n%d",m);
return 0;
}


Posted on by