https://github.com/sameetasadullah/udp-client-server-communication
A simple program coded in C language to illustrate a UDP Client Server Communication in Socket Programming
https://github.com/sameetasadullah/udp-client-server-communication
c-language client-server-communication linux socket-programming ubuntu udp-socket
Last synced: 25 days ago
JSON representation
A simple program coded in C language to illustrate a UDP Client Server Communication in Socket Programming
- Host: GitHub
- URL: https://github.com/sameetasadullah/udp-client-server-communication
- Owner: SameetAsadullah
- Created: 2022-08-09T23:14:17.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-09T23:19:29.000Z (almost 4 years ago)
- Last Synced: 2025-01-21T17:51:03.000Z (over 1 year ago)
- Topics: c-language, client-server-communication, linux, socket-programming, ubuntu, udp-socket
- Language: C
- Homepage:
- Size: 106 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
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