Date: Wed, 13 Aug 1997 20:33:35 +0200 From: Hans-Bernhard Broeker Subject: Re: [Q] Bug with printf? To: rdebelj AT wt DOT com DOT au (Robert Debeljakovic) Cc: djgpp AT delorie DOT com Message-id: <01IMEK4XLDZM8WWOW2@mail> Organization: RWTH Aachen, III. physikalisches Institut B Content-transfer-encoding: 7BIT Newsgroups: comp.os.msdos.djgpp Precedence: bulk In article <5ss8me$25j$1 AT kurica DOT wt DOT com DOT au> you wrote: > where as printf("hello"); gives me > [nothing] It doesn't give you "nothing", it just just doesn't write out the string *immediately*. Get out your C book and read a bit about the buffering of stdio functions. This is also described in the DJGPP FAQ, chapter 9.4. HBB