多項選擇題下列關(guān)于C語言中基本數(shù)據(jù)類型描述正確的是()
A.整型:即為整數(shù)例如123
B.字符型:用單引號引起來的字符例如’a’,’\n’
C.浮點型:即為小數(shù)例如3.14
D.字符串型:用單雙號引起來的字符例如"china","a"
您可能感興趣的試卷
你可能感興趣的試題
1.單項選擇題
有以下程序,程序運行后的輸出結(jié)果是()
#include< stdio.h>
main( )
{
int x=11;
printf(""%d\n"",++x);
}
A.12
B.11
C.10
D.9
2.單項選擇題下列數(shù)組說明中,正確的是()
A.int array[3][4]
B.int array[][]
C.int array[3,4]
D.int array[3][]