数组传参,形参是可以写成数组形式的。数组传参的本质是,传递了数组首元素的地址,因此数组传参,形式也可以是指针
#include <stdio.h>
void test(int arr[])
{
}
void test(int arr[10])
{
}
void test(int* arr)
{
}
void test2(int* arr[20])
{
}
void test2(int** arr)
{
}
int main()
{
int arr[10] = {0};
int *arr2[20] = {0};
test(arr);
test2(arr2);
}