Problem 1

Read the get_adr.c program. Modify one of programs from previous problems so that instead of IP numbers it takes hostname as argument. To copy address use memcpy function.

Problem 2

Look at example client and server programs. Modify server to use 'fork' to handle each request in separate process. Note: request should be handled by child process. The child should exit after handling single request.