C++ - Classes I
About classes I'm pretty sure that most of the people who are trying to learn how to program hear the term 'Class' at least once whilst learning. Most people, including myself, when first faced with classes just start scrolling and scrolling and looking and trying to understand even use classes if functions do a pretty similar thing, right? Well, that was at least my problem, nobody, not one tutorial or book that I've read explained why one would want to use classes. It was up to me, to do endless nights of programming, searching the web, and reading loads of books on the matter. This "tutorial" is aimed at explaining why one would even want to use a class and when should you use a class. This tutorial expects you, the reader, to have a solid knowledge of c++, things like data types, loops, functions and pointers to name a few. A simple example. So, to jump to the point. A class is basically a blueprint for creating an object and you've probably already...