单选题
要定义整型数组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
【答案解析】
提交答案
关闭