Hi, I am trying to use strings, and even a simple program like this doesn't work.
#include <iostream>
#include <string>
int main()
{
string Hello;
Hello = "Hello world!";
cout << Hello;
cin.get();
}
I am using Borland C++ 5.0, and it gives me this error.
"String does not name a type."
Help?
~Doughnuts