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
Q1: In C++, a function prototype is the
Q2: Which of the following function prototypes is
Q3: Stream variables (for example, ifstream and ofstream)
Q5: Functions that do not have a return
Q6: The statement: return 2 * 3 +
Q7: The output of the statement:cout << pow(2.0,
Q8: Using functions greatly enhances a program's readability
Q9: To use the predefined function tolower, the
Q10: Given the following function prototype: int myFunc(int,
Q11: Assume that all variables are properly declared.The