Ex5_6.cpp
上传用户:wuzhousb
上传日期:2022-07-12
资源大小:380k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. //【例5.6】指针赋值实例:
  2. #include <iostream>
  3. using namespace std;
  4. int main(){
  5. int age1=18,age2=20,*p_age;
  6. p_age=&age1;    //情况1,见图5.5
  7. cout<<"age1的地址是:"<<p_age<<endl;
  8. cout<<"age of wang ping is "<<*p_age<<endl;
  9. p_age=&age2;  //情况2,指针改指另一变量,见图5.5
  10. cout<<"age2的地址是:"<<p_age<<endl;
  11. cout<<"age of zhang ling is "<<*p_age<<endl;
  12. return 0;
  13. }