void Main()
{
   int i = 10;
   int j = foo(i);
}
int foo(int x)
{
   int *z = &x++;
   return *z--;
}