Skip to content

Latest commit

 

History

History
12 lines (6 loc) · 527 Bytes

README.md

File metadata and controls

12 lines (6 loc) · 527 Bytes

Socket-programming-in-C

To send data from Client to Server :

  1. Open file directory in terminal and make sure you have a file called client.txt with the data to be sent to server.

  2. run gcc server.c -o server and ./server to Start the Server

  3. Similarly, start the client using the command gcc client.c -o client and ./client

  4. You will see that server.txt has now been generated with the data fetched from client side.