int B;

IncromentB()
{
   B++;
}

main()
{
   B = 0; 	/* You should always set the values of your 
      		variables before you use them. */

   IncromentB();
}
