Skip to content

Instantly share code, notes, and snippets.

@grplyler
grplyler / simple-tcp-client.c
Created September 30, 2020 18:12 — forked from tiebingzhang/simple-tcp-client.c
A simple TCP client in C
#include <stdio.h>
#include <unistd.h>
#include <netdb.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#define PORT 8080