switch is an example of a

A. preprocessor directive
B. comment
C. keyword
D. statement

C

Computer Science & Information Technology

You might also like to view...

You must include page numbers when creating cross-reference listings

Indicate whether the statement is true or false

Computer Science & Information Technology

Which of the following uses C++11's list initialization to initialize count to 0?

a. int count = 0; b. int count[0]; c. int count(0); d. int count{0};

Computer Science & Information Technology