Date: Fri, 12 Jul 1996 07:38:09 +0800 (GMT) From: Orlando Andico To: randall williams cc: djgpp AT delorie DOT com Subject: Re: gotoxy In-Reply-To: <4s27ju$5jl@news.ysu.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On 11 Jul 1996, randall williams wrote: > #include > #include > > int x,y; > > main(){ > for(x=0;x<256;x++){ > for(y=0;y<256;y++){ > gotoxy(1,1); > printf("%d %d",x,y); > /* in my program I did some math here */ > } > } > } Gee, come on! printf() uses buffered streams! use cprintf() if you want gotoxy to work!