Please help me with this:
#include<stdio.h>
#include<dos.h>
main()
{
int x;
for(x=1;x<=50;x++)
{
gotoxy(x,2);
delay(1000);
printf("TEXT");
}
return 0;
}
I am planning to run the word "TEXT" in this program to the right side, but it didnt work.
WHAT'S WRONG WITH MY CODES?