Assume that the char variable ch contains a lowercase letter. Which of the following outputs the corresponding uppercase letter?
A. cout << char(toupper(ch));
B. cout << ch + 'a' - 'A';
C. cout << ch + 'A' - 'a';
D. a and b above
E. a and c above
Answer: E