C中的两个函数有什么区别吗?
void f1(int arr[]) { //some code... } void f2(int arr[10]) { //some code }
f1函数中第一个数组的大小是多少?
c function
c ×1
function ×1