Multiple Choice
Assume the following. static_cast<int>('a') = 97
Static_cast<int>('A') = 65
The output of the statement:
Cout << static_cast<int>(tolower('B') ) << endl; is ____.
A) 65
B) 67
C) 96
D) 98
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q2: Which of the following function prototypes is
Q13: When you attach & after the dataType
Q23: Given the function prototype: float test(int, int,
Q25: A variable listed in a header is
Q27: Given the following function prototype: int test(float,char);,which
Q29: The statement: return 37, y, 2 *
Q33: Given the function prototype: double testAlpha(int u,char
Q35: A variable for which memory is allocated
Q38: The execution of a return statement in
Q40: Once you write and properly debug a