问题 单项选择题

要定义整型数组x,使之包括初值为O的三个元素,下列语句中错误的是

A.int x[3]={0,0,0};

B.int x[]={0};

C.static int x[3]={0};

D.int x[]={0,0,0};

答案

参考答案:B

填空题
判断题