Skip to content

Instantly share code, notes, and snippets.

@sunmeat
sunmeat / main.cpp
Last active March 27, 2026 08:53
client server UDP C++ example
CLIENT SIDE:
#include <iostream>
#include <winsock2.h> // хедери функцій
#include <ws2tcpip.h> // inet_pton
using namespace std;
#pragma comment(lib,"ws2_32.lib") // реалізація бiблiотеки winsock
#define SERVER_IP "127.0.0.1" // ip-адреса сервера (локальний хост)