问题详情
已有如下数组定义和f函数调用语句,则在f函数的说明中,对形参数组array的正确定义方式为int a[3][4];f(a);
A、f(array[3][4])
B、f(int array[3][])
C、f(int array[][4])
D、f(int array[][])