"string" in vc++ 6.0

i want to use "string" data type like this:
string word;
which header file should i include in VC++ 6.0?
thanks!
[129 byte] By [codeu] at [2007-11-18 20:34:28]
# 1 Re: "string" in vc++ 6.0
Originally posted by codeu
which header file should i include in VC++ 6.0?
As in any other C++ compiler:
#include <string>
using namespace std;
gstercken at 2007-11-11 1:12:16 >
# 2 Re: "string" in vc++ 6.0
#include <string>

using namespace std;

string word;

OR

#include <string>

std::string word;
SJ Smith at 2007-11-11 1:13:21 >
# 3 Re: "string" in vc++ 6.0
thank you all! that works!
codeu at 2007-11-11 1:14:19 >