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

以下哪项是C语言中数组初始化的正确写法?

Aint arr[5] = {1,2,3,4,5};
Bint arr[] = {1,2,3,4,5};
Cint arr[5] = {1, 2, 3};
D以上都是正确写法