"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;