16 lines
238 B
C++
16 lines
238 B
C++
|
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;
|
||
|
}
|