I\'m trying to write a program with g++ that uses conio.h header. What I\'m actually trying to do is calling gotoxy function which I used in Borlan
conio.h
gotoxy
conio.h is specific to the Windows console environment. Use the curses or ncurses library on Unix; the appropriate function is mvcur() in the low level interface and wmove() in the virtual window interface.
curses
ncurses
mvcur()
wmove()