On Wed, Jan 30, 2002 at 12:52:48AM -0800, isaac flemmin wrote:
>
> I do know that I have included <string.h> for other programs, and that
> it does not have anything to do with C++ Strings.
Right. <string.h> is for the C string manipulation functions. The
C++ string type is defined in <string>.
Also note that depending on your compiler (and compiler version), the
standard string type may be known as just "string", or as the more
modern "std::string".
Jeroen