From: "Richard Birch" Newsgroups: comp.os.msdos.djgpp Subject: Simple problem regarding text on the screen Date: 31 Jul 1997 18:51:46 GMT Organization: UUNET Lines: 16 Message-ID: <01bc9de2$4b4ae320$LocalHost@damien> NNTP-Posting-Host: af093.du.pipex.com To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk I have a really simple, but equally annoying problem. Every time I output anything to the screen using cout or putch, it doesn't appear until either I output a new-line character or the program exits. Here's an example; #include #include main() { cout << "Text"; getch(); } Some programs I've done work, but I can't figure out why. Maybe I'm totally blind but can anyone help?