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
- Host: GitHub
- URL: https://github.com/nikhilroxtomar/udp-client-server-program-in-c
- Owner: nikhilroxtomar
- Created: 2018-04-06T16:19:20.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-06T16:23:21.000Z (about 8 years ago)
- Last Synced: 2025-04-14T19:58:15.805Z (about 1 year ago)
- Topics: client-server, socket-programming, udp-client-server
- Language: C
- Homepage: https://idiotdeveloper.com
- Size: 3.91 KB
- Stars: 18
- Watchers: 1
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.