Implementaion of File Transer Protocol
Objective: To implement FTP application, where the Client on establishing a connection with the Server, sends the name of the file it wishes to access remotely. The Server then sends the contents of the file to the Client, from where it is stored.
Server side:
gcc server.c -o server
./server
Client side:
gcc client.c -o client
./client

