#include<iostream> int main(void){ using namespace std; const int **a; int *b; const int c=9; a=&b; *a=&c; *b=10; return 0; }