How to run server.c

gcc server.c -o server
./server
./server 8080 (with optional port param)

How to run client.c

gcc client.c -o client
./client
./client 0.0.0.0 (with optional ip param)