Posts by j4x • 111 points
2 posts
-
1
votes1
answer133
viewsA: Which software to use to generate a picture of a giant graph?
Make your software generate an archive in the pattern graphviz. It is a "de facto" standard and several software will be able to open it. Some links that may be useful: General:…
-
0
votes1
answer40
viewsA: Equivalent to _kbhit() and _getch() on Ubuntu
You can implement your kbhit thus: #include <unistd.h> #include <fcntl.h> #include <errno.h> #include <termios.h> #include "kbhit.h" static struct termios initial_settings,…