programming-examples/c++/Others/Cin getline example.cpp

16 lines
238 B
C++
Raw Permalink Normal View History

2019-11-15 12:59:38 +01:00
Cin getline example
#include <iostream.h>
int main(void)
{
const SIZE = 100;
char msg[SIZE];
cout<<"Enter a string."<<endl;
cin.getline(msg,SIZE);
cout<<"The sentence you entered was"<<endl;
cout<<msg<<endl;
return 0;
}