指針測試

#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
相關文章
相關標籤/搜索