#3005. [GESP202306 四级 C++] 第 12 题
[GESP202306 四级 C++] 第 12 题
以下哪个函数声明在调用时可以传递二维数组的名字作为参数?( )
{{ select(1) }}
void BubbleSort(int a[][4]);void BubbleSort(int a[3][]);void BubbleSort(int a[][]);void BubbleSort(int ** a);
以下哪个函数声明在调用时可以传递二维数组的名字作为参数?( )
{{ select(1) }}
void BubbleSort(int a[][4]);void BubbleSort(int a[3][]);void BubbleSort(int a[][]);void BubbleSort(int ** a);