摘要: ## 五、指针 a表示变量值,&a表示取变量的地址 p表示指针指向地址,如p=&a \*p表示取出指针p指向的地址的值(p要先指向地址才能取值int a,\*p;p=&a;\*p=a),~~~int *sum=NULL;d=a+b+c;sum=&d;printf("%d",*sum);/**/int 阅读全文
posted @ 2023-06-28 14:16 Kimo姬 阅读(18) 评论(0) 推荐(0)