Mail Archives: djgpp/1998/06/02/14:10:34
On Tue, 2 Jun 1998, KINO wrote:
> -The cursor's position isn't as I wrote or
> -The cursor's position is O.K. but the printf() function I wrote doesn't
> appear. After quiting the program I press Alt+F5 and what a surprise that
> all sentences wroten (write) appear at the bottom of the screen.
You are using gotoxy together with printf. This is a bad idea, since
direct console I/O and stdio functions don't mix well. Use cprintf
instead. The DJGPP FAQ list (available as v2/faq210b.zip from the same
place you get DJGPP) discusses this in more detail in section 9.4.
- Raw text -