Message-ID: <20030130220413.68217.qmail@web13006.mail.yahoo.com> Date: Thu, 30 Jan 2003 14:04:13 -0800 (PST) From: Thomas Tutone Subject: Re: String class for djgpp To: djgpp AT delorie DOT com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Reply-To: djgpp AT delorie DOT com "gilbert" wrote: > I am looking for a string class which will work > with djgpp. [snip] > Is there a string class that will work with djgpp? I don't mean to be a smart-alec, but what's wrong with std::string? #include #include int main() { using namespace std; cout << "What is your name?"; string name; cin >> name; cout << "Hello, " << name << '.' << endl; } Or am I missing something? Best regards, Tom __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com