From: Nicolas Blais Newsgroups: comp.os.msdos.djgpp Subject: Conio's cprintf problem Date: Sun, 22 Mar 1998 13:09:09 -0500 Organization: Elemental Technologies Lines: 24 Message-ID: <351553C4.EE644B06@netrover.com> NNTP-Posting-Host: 198.168.87.77 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk Hi, whenever I compile and run this code, the "World!" string is placed below the "Hello" but after the "o". How do I make it got in the beggining of the line and not and the end of Hello. Here's what it shows on the screen: Hello World! '--------------CODE----------------------------------------- #include #include void main(void) { clrscr; textcolor(RED); cprintf("Hello\n"); highvideo(); cprintf("World!"); textcolor(LIGHTGRAY); return(0); }