We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
int main() {
// Declare a variable named 'input_string' to hold our input.
string input_string;
// Read a full line of input from stdin (cin) and save it to our variable, input_string.
getline(cin, input_string);
// Print a string literal saying "Hello, World." to stdout using cout.
cout << "Hello, World." << endl;
cout<<"Welcome to 30 Days of Code!"<<endl;
// TODO: Write a line of code here that prints the contents of input_string to stdout.
return 0;
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Say "Hello, World!" With C++
You are viewing a single comment's thread. Return to all comments →
int main() { // Declare a variable named 'input_string' to hold our input. string input_string;
}