通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
下列程序执行后的输出结果是( )。
void func(int *a,int b[]) { b[0]=*a+6; } main() { int a,b[5]={0}; a=0; b[0]=3; func(&a,b); printf("%d\n",b[0]); }