Final exam of the 42 school common core
- Write a program that will listen for client to connect on a certain port on 127.0.0.1 and will let clients to speak with each other. The subject is in this repository.
clang -Wall -Wextra -Werror mini_serv.c -o mini_serv && ./mini_serv 8080 # First terminal (server)
nc localhost 8080 # Second terminal (first client)
nc localhost 8080 # Third terminal (second client)