how to take full sentence in c 2b 2b

Solutions on MaxInterview for how to take full sentence in c 2b 2b by the best coders in the world

showing results for - "how to take full sentence in c 2b 2b"
Leonardo
10 May 2020
1#include<bits/stdc++.h>
2using namespace std;
3int main(){
4    string input;
5    getline(cin,input);
6    cout<<input<<endl; 
7}
8
similar questions
queries leading to this page
how to take full sentence in c 2b 2b