I am making an application where I think I will need to use termios.h
But I have windows 10. I installed cygwin64. I type in gcc test.c -o test.exe
in the terminal. I still get fatal error: termios.h: No such file or directory #include <termios.h>
Is there something I had to do during installation?
The code is just prints hello world but I included termios.h
#include <stdio.h>
#include <termios.h>
int main(){
printf("Hello World!");
return 0;
}