Date: Sat, 21 Oct 2000 00:40:39 +0200 From: "Eli Zaretskii" Sender: halo1 AT zahav DOT net DOT il To: "Ed Collins" Message-Id: <4634-Sat21Oct2000004037+0300-eliz@is.elta.co.il> X-Mailer: Emacs 20.6 (via feedmail 8.3.emacs20_6 I) and Blat ver 1.8.5h CC: djgpp AT delorie DOT com In-reply-to: (emacduffie AT mediaone DOT net) Subject: Re: printf References: Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > From: "Ed Collins" > Newsgroups: comp.os.msdos.djgpp > Date: Fri, 20 Oct 2000 20:01:47 GMT > > When executing a C program in rhide under Windows98, I cannot get the printf > function to work. Nothing is printed to the User Screen. You forget the buffering; see section 9.5 of the DJGPP FAQ for details. In this case, just putting a \n at the end of the printf format string will do what you want. Alternatively, call fflush(stdout) after printf.