                              // Chapter 1 - Programming exercise 2
#include "iostream.h"

main()
{
const index = 17;
volatile count;

   count = index + 12;
   index = count + 3;
}
