#include<iostream>usingnamespace std;intmain(){//1、const修饰指针 常量指针int a =10;int b =10;constint* p =&a;//指针的指向可以改,指针的值不可以改//*p=20;错误
p =&b;//正确//2、const修饰常量//指针的指向不可以改,指针的值可以改int*const p2 =&a;*p2 =100;//正确//p2=&b,错误//3、const修饰指针和常量constint*const p3 =&a;//指针的指向和指针都不可以改//*p3=100;错误//p3=&b;错误system("pause");return0;}