From 8daaad1faf8b296f7877ba4e04475a77ceb55e97 Mon Sep 17 00:00:00 2001 From: ahmedkaif05 <99736599+ahmedkaif05@users.noreply.github.com> Date: Sat, 20 May 2023 14:35:42 +0530 Subject: [PATCH] Update README.md Corrected some grammatical errors and expanded on the given example. --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 79b9b59..eb854ce 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,10 @@ # Multiple-Client-Server-Program-in-C-using-fork -A simple tcp client server application that describes the communication between the client and a server. The server is a simple echo sever that can handle multiple client using fork. +A simple tcp client server application that describes the communication between the client and a server. The server is a simple echo sever that can handle multiple clients using fork. -An echo server is a server that send back the same message that the client has send the server. -Like: +An echo server is a server that sends back the same message that the client had sent to the server, as demonstrated below. +

Demonstration: Client send - abc
-Server recv - abc +Server recv - abc
+Server send - abc
+Client recv - abc