Skip to content

Instantly share code, notes, and snippets.

@browny
browny / simple_socket_example.c
Last active July 12, 2024 23:58
simple socket example in C
/* --- Usage --- */
g++ server.c -o server
g++ client.c -o client
./server
./client 127.0.0.1
/* --- server.c --- */
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>