int x=100;
int y=201;
int *const p=&x; // p前面沒有*,所以表示位址不能改。不能寫成 *const int p。也可以如此看,先(const p)表示位址是常數,然後再*。
int const *q=&y;// q前面就是*,表示*q,也就是值不能改。也可寫成 const int *q。而這裡則是 const(*q),表示*q是常數,所以不能改值。
printf("*p is %d\n",*p);
printf("*q is %d\n",*q);
*p=999;
printf("*p is %d\n",*p);//變成999
q=&x;
printf("*q is also %d\n",*q);//也變成999