Introduction - If you have any usage issues, please Google them yourself
One common use of sockets is to facilitate a distributed workload system such that a slow client machine can make a computationally intensive request of a faster server machine via the network and sockets.The goal of this project is to write both a client and a server that together create such a system. The program flow could resemble the following:
The client will request the input of a word the user via stdin
1.This word will be transferred to the server over a socket connection.
2.The server will check the word for proper spelling and return a response that the word was spelled correctly, or a response that the word was spelled incorrectly.
3.The client will then display a formatted result of the server s response to the user. For example, a message stating, The word - is spelled correctly. or The word - is spelled correctly.
Your code for step1 was designed to support multiple clients, but one client at a time. You kept clients waiting until your server finished h