https://github.com/sameetasadullah/select-function-socket-programming
A program coded in C language to create a non-forking concurrent Client-Server Chat Program using select function
https://github.com/sameetasadullah/select-function-socket-programming
c-language client-server-communication linux select-function socket-programming ubuntu
Last synced: 29 days ago
JSON representation
A program coded in C language to create a non-forking concurrent Client-Server Chat Program using select function
- Host: GitHub
- URL: https://github.com/sameetasadullah/select-function-socket-programming
- Owner: SameetAsadullah
- Created: 2022-08-09T23:26:43.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-09T23:29:16.000Z (almost 4 years ago)
- Last Synced: 2025-07-26T23:12:13.557Z (11 months ago)
- Topics: c-language, client-server-communication, linux, select-function, socket-programming, ubuntu
- Language: C
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Select Function Socket Programming
### Description
A program coded in `C Language` to create a `Non-Forking Concurrent` Client-Server Chat Program using `Select Function`.
### 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
```