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: about 1 year 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 (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-01T08:47:15.000Z (over 3 years ago)
- Last Synced: 2025-03-12T17:32:40.820Z (over 1 year 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
```