Thread: re hi
View Single Post
Old 11-26-2004, 10:41 AM   #4 (permalink)
Valmont
[code][/code] enforcer
 
Valmont's Avatar
 
Join Date: Mar 2003
Location: Netherlands
Posts: 1,544
Valmont is on a distinguished road
Code:
#include <iostream>
#include <string>
using namespace std;

int main()
{
   string hello;
   cout << "say sth and i will repeat<<endl;
   getline(cin, hello);
   cout << hello;
   return 0;
}
__________________
Valmont is offline   Reply With Quote