Message-ID: <3BFF7DC2.9CA5C3F2@earthlink.net> From: Martin Ambuhl Organization: Nocturnal Aviation X-Mailer: Mozilla 4.77 [en] (Win95; U) X-Accept-Language: en,de-CH,fr,ru,zh-CN,ja MIME-Version: 1.0 Newsgroups: comp.os.msdos.djgpp Subject: Re: REPOST: My problem References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 16 Date: Sat, 24 Nov 2001 11:01:08 GMT NNTP-Posting-Host: 165.247.42.19 X-Complaints-To: abuse AT earthlink DOT net X-Trace: newsread1.prod.itd.earthlink.net 1006599668 165.247.42.19 (Sat, 24 Nov 2001 03:01:08 PST) NNTP-Posting-Date: Sat, 24 Nov 2001 03:01:08 PST X-Received-Date: Sat, 24 Nov 2001 02:56:53 PST (newsmaster1.prod.itd.earthlink.net) To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Jason Hsu wrote: > > Here is my C++ code: > > #include ^^^^^^^^^^^ The C++ header is > #include // include for C++ standard string class ADD: using namespace std; (you could name each identifier from the std namespace you use, or prepend each with std::) Your school compiler appears to accept non-standard C++.