A. 对 B. 错
A. 数组的首地址 B. 数组的第一个元素 C. 数组的全部数值 D. 数组元素的个数
A. fun_1(int arr[], int 5); B. fun_1(*arr, 5); C. fun_1(arr, 5); D. fun_1(arr[5], 5);