#include int main() { const int n=10; int *p=(int *)&n; *p=20; printf("%d\n",n); return 0; } //n仍然是一个变量,只是具有常属性,利用指针取n的地址,可改变n的值
?