C compiler with embedded metalanguage.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

19 行
216 B

int a[] = {5, [2] = 2, 3};
int
main()
{
if (sizeof(a) != 4*sizeof(int))
return 1;
if (a[0] != 5)
return 2;
if (a[1] != 0)
return 3;
if (a[2] != 2)
return 4;
if (a[3] != 3)
return 5;
return 0;
}