首页题库练习题目详情
C语言程序设计单选题中等

以下正确的二维数组定义方式是?

Aint a[2][3];
Bint a(2)(3);
Cint a[2, 3];
Dint a[2][3] = {1,2};