Answers for "how to take full sentence in c++"

C++
0

how to take full sentence in c++

#include<bits/stdc++.h>
using namespace std;
int main(){
    string input;
    getline(cin,input);
    cout<<input<<endl; 
}
Posted by: Guest on April-29-2021

Code answers related to "how to take full sentence in c++"

Browse Popular Code Answers by Language