First compile & Run the server
gcc multiserver.c -pthread
./a.out
Then Run multiple clients
gcc multiclient.c -pthread
./a.out <client name>
A Simple Chat client-server pair that works completely in the HTTP protocol.Server gets a request from one client and send it to other.
C