answersLogoWhite

0

How print the string with double cot in c plus plus language?

Updated: 8/19/2019
User Avatar

Jeetabhijadhav

Lvl 1
11y ago

Best Answer

console.wrikerle("""");

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How print the string with double cot in c plus plus language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Why php Echo not printing output with parenthesis?

echo will not return output when using parenthesis because echo is not a function like print. echo is a language construct. The benefit to using echo over the print function is speed, plus you can separate data types using comma's rather than periods.Example:echo 'This is a string ' , $variable , ' ending string';is the same (but faster) as:print('This is a sting' . $variable . ' ending string');


Do you have pointer concept in c plus plus language?

Yes. All string variables are pointers as are other arrays.


How do you output multiple 's on a single line in c plus plus programming language?

its supposed to have an asterisk there before the 's but it wouldnt print it


Find vowel from given string in C plus plus language?

std::string test ("The cat sat on the mat"); std::string vowels ("aeiouAEIOU"); size_t pos = test.find_first_of (vowels); if (pos != test.npos) std::cout << "Vowel found at position " << pos << std::endl;


How can you get a specific string from large string using c plus plus strings?

std::string::substr();


1 Define a class in C plus plus to store following information of books Title Author Publisher Price?

class Book { public: Book(std::string title, std::string author, std::string publisher, double price) : m_title(title), m_author(author), m_publisher(publisher), m_price(price) {} std::string get_title()const{return(m_title);} std::string get_author()const{return(m_author);} std::string get_publisher()const{return(m_publisher);} int get_price()const{return(m_price);} private: std::string m_title; std::string m_author; std::string m_publisher; double m_price; }


What double displacement reaction is PbI2 plus 2NaNO3?

In the English language this reaction is called counter-ion exchange double displacement reaction.


What is the role of plus operator between two string constant?

The plus operator between string constants allows string concatination: string a = "Hello, "; string b = "World!"; string c = a + b; The output of c would be: "Hello, World!".


Is there a datatype string in c plus plus?

Yes.


Plus 1 blue print for chemistry?

i want plus 1 blue print for all subjects


What is the difference between a C plus plus string and a C-style string?

A std::string is an object that encapsulates an array of type char whereas a C-style string is a primitive array with no members. A std::string is guaranteed to be null-terminated but a C-style string is not.


Write a program to read and print a strings in C plus plus?

#include #include using std::cin;using std::cout;using std::endl;using std::string;using std::getline;int main(){string myString = "";cout