In C++ a wide–character constant begins with the letter _____.
2021
In C++ a wide–character constant begins with the letter _____.
- A.
W
- B.
C
- C.
L
- D.
S
Attempted by 211 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.