问题
问答题
#include < iostream, h >void main() { int x =5; const int * const p = &x;* p =88; cout << * p << endl; }
答案
参考答案:
#include < iostream, h >void main() { int x =5; const int * const p = &x;* p =88; cout << * p << endl; }
参考答案: