Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 637 Bytes

README.md

File metadata and controls

26 lines (22 loc) · 637 Bytes

UDP Client Server Communication

Description

A simple program coded in C Language to illustrate a UDP Client Server Communication in Socket Programming.

Manual

  1. Use following commands to Compile and Run Server Code:

    gcc server.c
    
    ./a.out
    
  2. Use following commands to Compile and Run Client Code:

    gcc client.c
    
    ./a.out
    

Working Screenshot