From: "Yyrkoon" Newsgroups: comp.os.msdos.djgpp References: <004001be2c2b$2471b480$9600a8c0 AT martinn> Subject: Re: djgpp/C++ Lines: 28 X-Newsreader: Microsoft Outlook Express 4.72.3155.0 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 Message-ID: Date: Sun, 20 Dec 1998 23:54:33 +0100 NNTP-Posting-Host: 130.244.123.110 X-Complaints-To: news-abuse AT swip DOT net X-Trace: nntpserver.swip.net 914194634 130.244.123.110 (Sun, 20 Dec 1998 23:57:14 MET DST) NNTP-Posting-Date: Sun, 20 Dec 1998 23:57:14 MET DST Organization: A Customer of Tele2 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Martin Nilsson wrote, in the message <004001be2c2b$2471b480$9600a8c0 AT martinn>... >It aint COUNT << "text"; > >It's COUT << "text"; ...in reply to a message by casey weidner : >>sound like a stupid question, but any way, Im trying to learn C++ and i >>can figure-out wich header file to use to get the COUNT<<"text" Use #include and it's neither ``COUNT << "text";'' or ``COUT << "text";'', it's cout << "text"; casey, **get a C++ textbook**. You'll never figure out C++ by trial-and-error. Good luck!