A simple chat server build in C.
How to use it :
Compile It!
-
you must have the GNU C/C++ Compiler.
-
you must have the POSIX thread library (because this program using thread to work).
-
compile the main.c file using this command below on your UNIX Operating System's terminal.
gcc main.c -o [object's name] -lpthread
Run It!
just run the command line below
./[object's name]
Done!