开发平台(Platform): (Ex: Win10, Linux, ...)
macOS
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
GCC
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
问题(Question):
我想请问一下丢&A 然后用A**去接是什么意思?
另外我测试了**A *A A 去接
然后印出 *A **A的值都会一样
让我更困惑了
喂入的资料(Input):
预期的正确结果(Expected Output):
错误结果(Wrong Output):
console:
10
20
程式码(Code):(请善用置底文网页, 记得排版)
#include <stdio.h>
#include <stdlib.h>
void fun(int **A){
printf("%d\n",*A);
printf("%d\n",**A);
}
int mian(){
int a = 10;
int *A = &a;
fun(&A);
}
补充说明(Supplement):