Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,890 questions

51,817 answers

573 users

How to defind string and raw string with escape characters in C++

1 Answer

0 votes
#include <iostream>
#include <string>

using std::cout;
using std::endl;
using std::string;

int main()
{
	string s1 = "c++;\tc;\njava;\nphp;\n";

	// Raw string
	string s2 = R"(c++;\tc;\njava;\nphp;\n)";

	cout << s1 << endl;

	cout << s2 << endl;

	return 0;
}

/*
run:

c++;    c;
java;
php;

c++;\tc;\njava;\nphp;\n

*/

 



answered May 7, 2018 by avibootz

Related questions

1 answer 149 views
1 answer 235 views
1 answer 199 views
199 views asked Aug 28, 2016 by avibootz
1 answer 106 views
106 views asked Feb 3, 2022 by avibootz
...