Compile and run the server (You can specify any* port you want):
$ make && ./server 8080Test it using telnet:
$ telnet localhost 8080or using cURL:
$ curl --http0.9 -v localhost:8080--http0.9 tells cURL to handle HTTP/0.9 response normally.
-v for verbose mode.
P.S: Port is better not be less than 1024, as those are reserved already, plus normal users are not allowed to run servers on them; thus causing an error when binding the socket (unless you run the server as root).