In C++ a wide–character constant begins with the letter _____.
2021
In C++ a wide–character constant begins with the letter _____.
Answer: C. L — In C++, wide-character constants are denoted by prefixing the character with the letter L. For example, L'a' represents a wide-character literal rather than a…
- A.
W
- B.
C
- C.
L
- D.
S
Attempted by 448 students.
Show answer & explanation
Correct answer: C
In C++, wide-character constants are denoted by prefixing the character with the letter L. For example, L'a' represents a wide-character literal rather than a standard char.
Loading lesson…