代码改变世界

C++ pointer

2024-03-18 12:07  @学无止境  阅读(1)  评论(0编辑  收藏  举报
int* pInt = new int; *pInt = 5; cout << " " << endl; cout << "&(*pInt)-->" << &(*pInt) << endl; cout << "pInt-->" << pInt << endl; cout << "&pInt-->"