#include <stdio.h>

int main() {
  const int x = 1;
  int * px = &x;
  *px = 0;
  printf("x is %d", x);  
  return 0;
}
