#include #include using namespace std; void get_sentence(string &s); int main() { string sentence; get_sentence(sentence); cout << sentence << endl; return 0; } void get_sentence(string &s) { cout << "Enter a string" << endl; getline(cin, s); }