Echo Server

This project is a simple socket application, involving a client and a server that communicate through well known ports.

The server program should create and bind to a socket, at a well-known port and listen for client connections. Once it receives data from a client, it should echo this back to the client and close the connection.

The client program should connect to the server and accept a string from the user. It should send this string as data to the server and should print the server's response on the screen.