C++练习题第9套

81.在C++中,下面哪个不是CPP文件扩展名?

a. .cpp

b. .hpp

c. .cc

d. .cxx

82.在C++中,下面哪个函数不是输入/输出函数?

a. putchar()

b. scanf()

c. cout<<

d. getchar()

83.以下哪个关键字不是C++中的关键字?

a. int

b. double

c. float

d. integer

84.在C++中,下面哪个函数用于从字符串中提取子字符串?

a. substr()

b. find()

c. erase()

d. replace()

85.在C++中,下面哪个迭代器用于反向遍历容器?

a. begin()

b. end()

c. rbegin()

d. rend()

86.在C++中,下面哪个STL容器用于实现栈数据结构?

a. set

b. list

c. deque

d. stack

87.在C++中,下面哪个STL算法用于排序容器中的元素?

a. find_if()

b. count()

c. sort()

d. reverse()

88.在C++中,下面哪个关键字用于标识模板类?

a. template

b. class

c. typename

d. struct

89.在C++中,下面哪个操作符用于获取对象的地址?

a. &

b. *

c. ->

d. .

90.在C++中,下面哪个预处理器指令用于包含头文件?

a. #include

b. #ifndef

c. #define

d. #endif

你可能感兴趣的:(C++练习题,c++,练习题)