Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mr-sunglasses/chat-application-c
- Owner: Mr-Sunglasses
- Created: 2022-12-26T21:10:03.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-01T08:47:15.000Z (almost 2 years ago)
- Last Synced: 2024-11-18T07:47:06.948Z (2 months ago)
- Topics: c, chat
- Language: C
- Homepage:
- Size: 79.1 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```