要定义整型数组x,使之包括初值为0的三个元素,下列语句中错误的是
int x[3]={0,0,0};
int x[]={0};
static int x[3]={0};
int x[]={0,0,0};
发表评论