ICode9

精准搜索请尝试: 精确搜索
  • 关于指针的学习2019-11-04 18:50:33

    # include <stdio.h> int main() { int x = 3; int* p = &x; /*星p即是x的指针,又定义了一个p */ printf("%p\n", &x); /*00B3FD58 x的地址*/ printf("%p\n", &p); /*00B3FD4C p的地址 */ printf(&q

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有