摘要: C语言中的& 用法 1、是取地址符,用于指针赋值 & 返回变量的地址。 &a; 将给出变量的实际地址。 #include <stdio.h> int main() { int a = 2; int b,c; b = a; c = &a; printf("%d \n%d",b,c); return 0 阅读全文
posted @ 2022-04-02 17:08 李新乾 阅读(1055) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示