0

Can som1 help me solve this with C++ https://www.hackerrank.com/challenges/30-hello-world

This is a Hello world program i m trying to do it with C++ but what's wrong i can't solve this. plz visit link and try solving it

5th Jun 2017, 6:23 PM
Hiren Bhanushali
Hiren Bhanushali - avatar
1 Réponse
+ 1
All it's asking you is to print the input string after hello world. cout << "Hello, World." << endl; cout << input_string << endl; or cout << "Hello, World." << endl << input_string << endl;
5th Jun 2017, 7:06 PM
Dennis
Dennis - avatar