Message-ID: <3250D3BB.5856@ix.netcom.com> Date: Tue, 01 Oct 1996 04:18:04 -0400 From: Dragon Slayer MIME-Version: 1.0 To: djgpp AT delorie DOT com Subject: cout Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit I have downloaded your C++ compiler and am having a problem. first here is my test code to get the compiler to work. #include void main(void) { cout << "hello" << endl; } when I compile this using: gcc a.C or gcc a.cpp (have also tried gcc -o out a.C etc..) it gives me this error message: undefined reference to 'cout' undefined reference to 'ostream::operator<<(char const *)' I set the set djgpp=c:/programming/djgpp/djgpp.env what's wrong????