simple-network-communication Very simple client/server using TCP. Server sends message to the client. How to use Compile the code: gcc server.c -o server gcc client.c -o client Run the server: ./server <port> Run the client: ./client <address> <port> Usage Example