Scrolling Text Home › Forums › C Programming › Scrolling Text This topic has 0 replies, 1 voice, and was last updated 17 years, 11 months ago by will. Viewing 0 reply threads Author Posts February 25, 2005 at 9:52 am #1892 willParticipant <br /> #include<stdio.h><br /> #include<conio.h><br /> #include<process.h><br /> #include<dos.h><br /> void main()<br /> {<br /> clrscr();<br /> char key;<br /> int i,j=1;<br /> for (i=80;i>2;i--)<br /> {gotoxy(i,j);<br /> printf("Hello");<br /> delay(200);<br /> clrscr();<br /> }<br /> getch();<br /> } 123456789101112131415161718 <br />#include<stdio.h><br />#include<conio.h><br />#include<process.h><br />#include<dos.h><br />void main()<br />{<br />clrscr();<br />char key;<br />int i,j=1;<br />for (i=80;i>2;i--)<br />{gotoxy(i,j);<br />printf("Hello");<br />delay(200);<br />clrscr();<br />}<br />getch();<br />} Author Posts Viewing 0 reply threads The forum ‘C Programming’ is closed to new topics and replies.