Pointer
声明和赋值
#include<iotream>
#include<string>
using namespace std;
公寓大楼 内存卡
房间 内存空间 内存地址(房间号)
int main()
{
int a=324;
string str="sdluxncjdnchsdvhjcbsnxndjbj";
cout<<str<<endl;
//指针可以访问变量的内存地址
//指针就是用来存储某个变量的内存地址的
int* pA;//int * pA;int *pA;
pA = &a;
int* pA=&
cout<<pA<<endl;
string s;
cin>>s;
return 0;
}