main()
{
   int ACounter, BCounter;

   for(ACounter = 0; ACounter < 10; ACounter++)
   {
      /* Some stuff here will happen 10 times, starting 
      with ACounter = 0 untill ACounter = 9 */
   }

   for(BCounter = 10; BCounter != 0; ACounter--)
   {
      /* This loop was to be a count down loop but 
      something when wrong. This loop will run for ever. 
      Why? Would you know how to fix it? */
   }
}
