Projects

Number Guessing Game in C++
In this guide I will use loops and the random number generator to build a very basic game. The article generally helps the programmer in applying the srand() function and loops in C++.

Programming an HTML Downloader in C++
This program requests the source code (HTML) of a webpage and then gives the user multiple options for viewing the web server's response. We will use the Winsock API to manipulate sockets on the system, and create reusable code along the way.

Solving Soduku Using Backtracking
We will use a simple backtracking algorithm to quickly solve a Soduku puzzle. This article will try to give a useful example in recursive programming and in backtracking algorithms in general.