指针测试

#include<iostream> using namespace std; int main() { int *pInt = NULL; cout << "指针变量pInt地址是:" << &pInt << endl; int pop = 1; cout << "pop地址是:"<< &pop << endl; cout << "pop值是:"<< pop << endl; p
相关文章
相关标签/搜索