// castAway.cc P. Conrad CISC181 03/15/06

#include <iostream>
using namespace std;

// will this compile?  will it run?

int main(void)
{
  const int answer = 42;


  int *x;

  
  x = &answer; // this assignment is from const int * to int *

  (*x)++;

  cout << "answer = " << answer << endl;


}
