int IncromentB(int SomeValue)
{
   return(SomeValue++);
}

main()
{
   int B;

   B = 0;
   B = IncromentB(B);
}

