各位大神看一下
//const #include
using namespace std; int main(void) { const int count = 3; const int *p = &count; //打印count次字符串Hello C++ for(int i = 0; i < *p; i++) { cout << "Hello imooc" << endl; } return 0; } 这段代码的第二个const不加为什么无法运行
//const #include
using namespace std; int main(void) { const int count = 3; const int *p = &count; //打印count次字符串Hello C++ for(int i = 0; i < *p; i++) { cout << "Hello imooc" << endl; } return 0; } 这段代码的第二个const不加为什么无法运行
2018-03-07
举报