下面是一段输出地址的程序。
#include <bits/stdc++.h>
using namespace std;
int main() {
int s;
cout << &s;//原地址
return 0;
}
假如有一个人(的朋友)后来了,他也想住进的房间,我们可以这样:
#include <bits/stdc++.h>
using namespace std;
int main() {
int s;
int *p = &s;
cout << &s << " ";//原地址
cout << p;//指针指到的地址
return 0;
}
(也就是做了个指针)