answersLogoWhite

0

console.wrikerle("""");

User Avatar

Wiki User

12y ago

What else can I help you with?

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 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.


What double displacement reaction is PbI2 plus 2NaNO3?

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


Plus 1 blue print for chemistry?

i want plus 1 blue print for all subjects


How do you print to the screen in C plus plus?

printf();


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.