單項選擇題在C語言中,數(shù)字029是一個()。

A.八進制數(shù)
B.十進制數(shù)
C.十六進制數(shù)
D.非法數(shù)


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題C語言中基本數(shù)據(jù)類型有()。

A.整型、實型、邏輯型
B.整型、字符型、邏輯型
C.整型、實型、字符型
D.整型、實型、字符型、邏輯型

2.單項選擇題

已知對學生記錄的描述為:設變量stu中的“生日”是“1995年11月12日”,對“birthday”正確賦值的程序是()

A.year=1995;month=11;day=12;
B.stu.year=1995;stu.month=11;stu.day=12;
C.birthday.year=1995;birthday.month=11;birthday.day=12;
D.stu.birthday.year=1995;stu.birthday.month=11;stu.birthday.day=12;

3.單項選擇題

有如下定義的結構體類型:對其中成員month的正確引用方式是()

A.data.month
B.data.year.month
C.month
D.workday.month

4.單項選擇題以下結構體的定義語句中,正確的是()

A.structstudent{intnum;charname[10];intage;};stu;
B.struct{intnum;charname[10];intage;}student;structstudentstu;
C.structstudent{intnum;charname[10];intage;}stu;
D.structstudent{intnum;charname[10];intage;};studentstu;