upward charachter

what charachter goes up one line, like how \b goes back one space?
Last edited on
There isn't a character which goes up, you should use an external library to do that
What external library?
curses or ncurses for Un*x
I'm using winwdows,.
for Windows pdcurses or Windows API

1
2
3
//with windows API ( #include <windows.h> )
COORD newposition = { x, y };
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),newposition);


http://msdn.microsoft.com/en-us/library/ms686025.aspx
Last edited on
Hey it really worked, thanks.
Topic archived. No new replies allowed.