0
Make a program to accept any sentence.
3 Antworten
0
#include <iostream>
#include <string>
using namespace std;
int main()
{
string sentence;
cin>>sentence;
cout<<sentence<<endl;
return 0;
}
0
what is the use of string?
0
the use of strings is to deal with words, sentences,means more than a letter or character whenever you wanted to use in programming.