阅读程序写结果指针
1. 下列程序段执行后的输出结果是 【1】void func(int *a,int b[]) { b[0]=*a+6; } main() { int a,b[5]; a=0; b[0]=3;
阅读程序写结果指针