Assume the following.
?
static_cast('a') = 97
static_cast('A') = 65
?
The output of the statement:
?
cout << static_cast(tolower('B')) << endl;
?
is ____.

A. 65
B. 67
C. 96
D. 98

Answer: D

Computer Science & Information Technology

You might also like to view...

The class _______ is the portion of a class that is visible to the application programmer.

a. form b. design c. control d. interface

Computer Science & Information Technology

To avoid confusion, you can use ____statements instead of using AND and OR operators.

A. trivial B. nested if C. NOT D. range check

Computer Science & Information Technology