Coders Packet

Chatroom using C++

By Ashique Sardar

This is a simple client server chat application built using C++. The instructions are given below so that you can understand how to run the project.

How to run

  1. Clone this repository
  2. Run the following commands in your terminal :
g++ server.cpp -lpthread -o server
g++ client.cpp -lpthread -o client
 
  1. To run the server application, use this command in the terminal :
./server
 
  1. Now, open another terminal and use this command to run the client application :
./client
 
  1. For opening multiple client applications, repeat step 4.

A chat room application developed in C++ using the concepts of multi-threading and socket programming.

Download Complete Code

Comments

No comments yet

Download Packet

Reviews Report

Submitted by Ashique Sardar (ashik584)

Download packets of source code on Coders Packet