Skip to content

Instantly share code, notes, and snippets.

View xcc2731594's full-sized avatar
🏠
Working from home

xcc2731594

🏠
Working from home
View GitHub Profile
@jinfeijie
jinfeijie / c_http_post.c
Last active June 25, 2023 01:45
C语言发送http POST请求
#include <arpa/inet.h>
#include <assert.h>
#include <errno.h>
#include <netinet/in.h>
#include <signal.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>