Solved

As of C++11, C++ Now Supports Raw String Literals That

Question 11

Multiple Choice

As of C++11, C++ now supports raw string literals that have the format R"optionalDelimiter(characters) optionalDelimiter"
Which of the following statements is false:


A) The optionalDelimiter before the left parenthesis, (, and after the right parenthesis,) , must be identical, if provided.
B) The parentheses are required around the characters that compose the raw string literal.
C) The compiler automatically inserts backslashes as necessary in a raw string literal to properly escape special characters like double quotes (") , backslashes (\) , etc.
D) None of the above.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions