Server: Client: both should work simotaniously You are required to write a C program where Server receives temperature in Fahrenheit from the client and converts it to Celsius and sends it back to the client. Server Once the connection is established between the Server and the Client, at server side, you are required to receive the temperature from the client in Fahrenheit, convert it into Celsius and send it back to the Client. Make sure of the followings: - Server should be able to take temperature from the client in decimal values, e.g., 100.56 - After converting it into Celsius, make sure to maintain 2 decimal point values - Once converted, send it to the client. - Show appropriate messages on Server console (see expected output screenshot below) Client On the client side, you should take the temperature value of Fahrenheit from command line arguments. Make sure of the followings: - Data received from command line arguments is sent to the Server - Decimal point values are maintained when data is sent to the server - Decimal point values should be maintained on receiving data from the server - Show the data sent and received on the console of the client (see expected output screenshot below) Server socket created! Socket bound successfully Listening to socket Accepting new connections! Connection Established Received from Client 100.6 Client socket initialized! Connection established Terperature 100.6 sent to server for conversion into Celsius... Received from Server after conversion 38.11.