include<iostream>using namespace std;int main(void){ int x = 5; int *ptr=&x; int **temp =&ptr; cout << "&ptr="<<ptr<< endl; cout << "*ptr=" << *ptr<
確定! 回上一頁