Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

how to take full sentence in c++

#include<bits/stdc++.h>
using namespace std;
int main(){
    string input;
    getline(cin,input);
    cout<<input<<endl; 
}
 
PREVIOUS NEXT
Tagged: #full #sentence
ADD COMMENT
Topic
Name
6+2 =