I am working on a project using the console and I need printing to be as fast as possible. Even putc() is too slow (I checked all the common methods of printing and their run times). After carefully reading the Windows API low-level I/O documentation, I am only more confused; there is barely any code, I find it hard to understand, and I am not sure it will speed up the printing process.
So I was wondering if there is any faster method for printing a single character to the console using Windows (not the API, the os)?
Edit: Is nCurses any faster than just the Windows API or putc()?