Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mr-sunglasses/chat-application-c

ChatApp in C using Networking
https://github.com/mr-sunglasses/chat-application-c

c chat

Last synced: 6 days ago
JSON representation

ChatApp in C using Networking

Awesome Lists containing this project

README

        

# Chatroom-in-C

A simple Chatroom built in C programming language. The program has two files - server.c and client.c. The program is built uses multithreading for handling multiple clients.

# Compile and run the program

Just simply run the Makefile using these commands:

```bash
# compile
make

# run the server
./server

# on another terminal, run the client
./client
```