#include <iostream> using namespace std; int main() { int a = 100; int b = 200; int * const p = &a; cout << " *p = " << *p << endl; *p = 50; cout << " *p = " << *p << endl;//P 改为 p return 0; }
65,187
社区成员
250,526
社区内容
加载中
试试用AI创作助手写篇文章吧