An open API service indexing awesome lists of open source software.

https://github.com/nikhilroxtomar/udp-client-server-program-in-c

A simple UDP Client Server program written in C language
https://github.com/nikhilroxtomar/udp-client-server-program-in-c

client-server socket-programming udp-client-server

Last synced: 11 months ago
JSON representation

A simple UDP Client Server program written in C language

Awesome Lists containing this project

README

          

# UDP-Client-Server-Program-in-C

A simple UDP Client Server program written in C language on an Ubuntu 16.04

# Compile
gcc udpServer.c -o udpServer

gcc udpClient.c -o udpClient

# Run
$ ./udpServer 1234

$ ./udpClient 1234

Thats the simple procedure to run this program.