摘要: 1 #include 2 #include 3 #include 4 using namespace std; 5 int main() 6 { 7 int *p,i=1; 8 p=&i; 9 cout<<"*p: "<<*p<<endl<<"&p: "<<&p<<endl<<"p: "<<p<<endl<<"i: "<<&i<<endl; 阅读全文
posted @ 2019-03-13 18:15 XXrl 阅读(421) 评论(0) 推荐(0) 编辑