void f(int ** q); int main() { int * p; f(&p); return 0; } void f(int ** q) {q=8; printf("%d",q); }
收起
printf 没加 \n
报告相同问题?