I need to write a Sudoku game (not just a solver; the solver will be a cheat mode in the game where you press a combination of keys and it solves one step for you) in C as a console application (no fancy GUI application yet). How do I write a good text user interface in C?
Check out ncurses.
I thought about ncurses too, but I was worried it wouldn't run on my Windows platform. I am wrong. Thanks!
Great I can graphics on par with Rogue/Hack/NetHack :-D
I can get* graphics
What is "ncurses" ?
ncurses is basically a way for me to get cool graphics.
Haha. ncurses is a library for creating user interfaces on a command line interface. So, you can divide the screen into panes, or do whatever - without having a full Windowing system running.
do you know 8 queens problem? I feel that if you iterate it 'n' number of times you can get the appropriate code.
Join our real-time social learning platform and learn together with your friends!