- This topic has 0 replies, 1 voice, and was last updated 19 years, 9 months ago by .
Viewing 0 reply threads
Viewing 0 reply threads
- The forum ‘C Programming’ is closed to new topics and replies.
Home › Forums › C Programming › Scrolling Text
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <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 /> } |