Sockets and Network Programming in C
Network programming is a fascinating topic...
What is a Socket?
A socket is an endpoint for communication...
#include <sys/socket.h>
int main() {
int sockfd = socket(AF_INET, SOCK_STREAM, 0);
return 0;
}