How can I do cursor control with ANSI using escape sequences using Turbo C? Here I've provided a code, but it's not yet working in my TurboC.
main()
{
while( getche() != '.' )
printf("\x1B[B");
}
feedback
|
|
Apart from the possibility that that output may be line buffered (meaning nothing may appear until you send a newline), you should probably also ensure that But I'm wondering why you're doing this. From memory (admittedly pretty faded memory), Turbo C has calls for doing this sort of thing, | |||||||||
feedback
|
|
A way of putting escape character with printf() is:
But usually (I don't know Turbo C), there are libraries for doing terminal related stuff in a portable way. | |||
|
feedback
|