
#include <stdio.h>

const int x = 2;

int main()
{
    int *p = (int *) &x;
    *p = 10;
    printf("%d\n", *p);
}


