Skip to content

Instantly share code, notes, and snippets.

View leanghok120's full-sized avatar
💤

Leanghok Oeng leanghok120

💤
View GitHub Profile
@leanghok120
leanghok120 / server.c
Created December 18, 2025 21:43
http server in c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#define PORT 80