为什么要定义为const int*p, 指针指向的是count地址,并不是count的值,为什么一定要用常量指针
//const
#include <iostream>
using namespace std;
int main(void)
{
//定义常量count
const int count = 3;
const int * p = &count;
//打印count次字符串Hello C++
for(int i = 0; i < *p; i++)
{
cout << "Hello imooc" << endl;
}
return 0;
}