Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 283 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 283 Bytes

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.