From: "Shawn" Newsgroups: comp.os.msdos.djgpp References: <926196823 DOT 140 DOT 94 AT news DOT remarQ DOT com> Subject: Re: stream question Date: Sun, 9 May 1999 01:46:05 -0400 Lines: 25 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 NNTP-Posting-Host: 128.119.116.182 Message-ID: <3735215c.0@oit.umass.edu> X-Trace: 9 May 1999 01:47:08 -0500, 128.119.116.182 Organization: University of Massachusetts, Amherst To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Shaggs wrote in message news:926196823 DOT 140 DOT 94 AT news DOT remarQ DOT com... > What all do i need to have in my code to write to the screen using streams. > Im a C++Builder person normally, but its not working for DJGPP. Here's what > i got > > #include > > cout << "Hello World"; > > this causes compiler errors, any ideas? > > DJGPP does not output anything to the screen when streaming through cout until it encounters a \n. This is to save time when switching out of protected mode to DOS. -Shawn