system
can only call executablessystem
system
you're spawning another program, which is pretty expensive on windows e.g.
cbreak();
getchar();
nocbreak();
#include <curses.h>
int main() {
initscr();
noecho();
cbreak();
getch();
nocbreak();
echo();
return 0;
}
gcc a.c -lncurses
(edited)./a.out