What is the output of the following code?
#includestdio.h
int _a_1234(int n){
return n++;
}
int main()
{
int n=_a_1234(6);
printf("%d",--n);
return 0;
}

Posted on by