hello there! I am new here on Daniweb. I couldn't find an article anywhere on google about moving text in C++.
I have an idea but my problem is, I can't find a way to make my other output still. What I mean is: I don't know how to prevent my other output to be cleared when I use clear screen.
here is my code:
clrscr();
int x;
gotoxy(x,10);
for(x=0; x<=70; x++)
{
gotoxy(x,10);
cout<<"glennkun";
clrscr();
}
any idea guys?