A tutorial for beginners, offerring a look into C++ structures. How structures can be defined, created, accessed and what is their actual use. Includes example code.
Transforming a string into ASCII
Transforming a string into ASCII code using int() and the ‘while’ loop. Good for beginners in programming and C++.
Basic C++ functions
Tutorial for understanding the C++ functions. It shows you two functions that return the same result but are coded differently.
Random number within a range
Generating a random number in C++ is easy, but for generating one within a range you must use a little trick.
Calculating the average
A very simple piece of code for the beginner in C++. It demonstrates how to calculate the average of some numbers. Uses the ‘for’ loop.
Introducing pointers
Pointers represent an important aspect of C++. Although, newbies often get confused with pointers, even those who know other programming languages.
Understanding C++ data types III
This is the third part and the biggest of the small book named ‘Understanding C++ data types’. This part covers the ‘integer’ data type.
CD Drive Control
Enumerates all CD-ROM drives and allows them to be opened and closed at the touch of a button.
Searching for a string in a File
Let’s you find the first occurance of a string within a file.
Smart Pointers – Part 1
Programming tutorial for understanding “Smart Pointers”.