单项选择题

以下()代码,能够对数组正确初始化(或者是默认初始化)。

A.int[ ] a;
B.a={1,2,3,4,5};
C.int[ ] a=new int[5]{1,2,3,4,5};
D.int [ ] a=new int[5];