下面对数组的定义,编译错误的是()A.int a[ ];B.int arr={1,2,3};C.int arr[4]={1,2,3,4,5};D.int n; int arr[n]
D,数组的大小是一个常量,