Ask Your Question
2

How can a string that exists on multiple lines be represented in C++?

asked 2023-06-05 10:38:18 +0000

lakamha gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-06-05 10:51:02 +0000

lalupa gravatar image

In C++, a string that exists on multiple lines can be represented using either a string literal or a concatenation of multiple string literals.

Using a string literal:

std::string myString = "This is a string\n"
                       "that exists on multiple lines\n"
                       "using a string literal.";

Using a concatenation of multiple string literals:

std::string myString = "This is a string\n"
                       "that exists on multiple lines"
                       "using a concatenation of "
                       "multiple string literals.";
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-05 10:38:18 +0000

Seen: 11 times

Last updated: Jun 05 '23