You are viewing a single comment's thread. Return to all comments →
C++
int main() { // declaring a variable string st; // inputting line in the variable getline(cin, st); cout << "Hello, World.\n"; cout << st; return 0; }
Day 0: Hello, World.
You are viewing a single comment's thread. Return to all comments →
C++