I made a server with C using socket on a Linux machine and it's working fine but when I tried to run it on windows machine using visual studio, I'm getting an error:
fatal error C1083: Cannot open include file: 'sys/socket.h': No such file or directory
The ide telling me that this header files are not found.
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>