本帖最後由 張郁庭 於 2014-9-13 17:19 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int x=10;
- int *xPtr;
- xPtr=&x;
- cout<<"變數x的值: "<<x<<endl;
- cout<<"變數x的值: "<<xPtr<<endl;
- cout<<"變數x的值: "<<*(&x)<<endl;
- cout<<"變數x的位置: "<<&x<<endl;
- cout<<"變數x的位置: "<<xPtr<<endl;
- cout<<"變數x的位置: "<<&(*xPtr)<<endl;
- system("pause");
- return 0;
- }
複製代碼 |