What is the Output
#include stdio.h
int _a_1234(int n){
return n++;
}
int main()
{
int n = _a_1234(6);
printf("%d",--n);
return 0;
}



Posted on by