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.