- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int x = 10;
- int *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;
- }
複製代碼 |