multi line strings c++ code example

Example 1: multiline string in c++

#include <iostream>


int main() {

	
	//Display in Multiline using escape character /n
	const char* example2 = "Line1\n"
	"Line2\n"
		"Line3\n"
		"Line4\n"
		;
	std::cout << example2 << std::endl;
	std::cout << "===================================" << std::endl;
	// display in multiline using Raw
	const char* example = R"(Line1
Line2
Line3 
Line4 
)";//no need to use escape character  /n
	std::cout << example << std::endl;

	std::cin.get();
}

Example 2: c++ multiline string

#include <iostream>
#include <string>

std::string YourString = R"(
	Your
    multiline
    string
)";


/* SYNTAX
R"(

")
*/

Tags:

Cpp Example