單項選擇題

以下程序的輸出結(jié)果是
main()
{inta[4][4]={{1,3,5},{2,4,6},{3,5,7}};
printf(";";%d%d%d%d\n";";,a[0][3],a[1][2],a[2][1],a[3][0];
}

A.6
B.6789
C.’6’
D.789


您可能感興趣的試卷

你可能感興趣的試題

4.單項選擇題

請讀程序:
main()
{char*p;
chars[80];
scanf("%s",s);
p=s[0];
printf("%s",p);
}
請判斷上面程序()

A.錯誤:p=s[0];正確:p=*s;
B.錯誤:p=s[0];正確:p=s[];
C.錯誤:p=s[0];正確:p=s;
D.錯誤:p=s[0];正確:p=&s;