单项选择题

以下能对数组a进行正确初始化的语句是()

A.int a[5]=(1,2,3,4,5);
B.int a[5]=[0];
C.int a[5]={1,2,3,4,5,6};
D.int a[]={0};