当前位置:   article > 正文

指针pt的值(pt,&pt,*pt)

*pt

 代码:

  1. #pragma warning(disable:4996)
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <math.h>
  5. int main()
  6. {
  7. int n=50;
  8. const int* pt = &n;
  9. n++;
  10. int sage = 80;
  11. printf("指针pt的值(pt):%20p\n",pt);
  12. printf("n的地址(&n): %20X\n", &n);
  13. printf("n的值: %20d\n", n);
  14. printf("*pt的值: %20d\n", *pt);
  15. printf("pt的地址(&pt):%20p\n", &pt);
  16. return 0;
  17. }

结果:

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/342783
推荐阅读
相关标签
  

闽ICP备14008679号