An open API service indexing awesome lists of open source software.

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

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
```