PDA

View Full Version : C++ Repositioning the cursor


enigma_0Z
August 27th, 2006, 03:06 PM
Is there a quick (read: easy) way to move the cursor around on the screen in C++?

Woei
August 28th, 2006, 03:53 AM
Is there a quick (read: easy) way to move the cursor around on the screen in C++?

You'll want to read up on ncurses, the standard terminal abstraction library for Unix. The ncurses library is in plain C though, but I'm sure you'll find a wrapper project or two to generate more idiomatic C++ code when googling around a bit.