Beginning C++ 93-100: Characters and Strings
Characters and Strings… We have worked some with it so far, but just really putting the strings out there for the user to read and…
Continue reading → Beginning C++ 93-100: Characters and Strings
Characters and Strings… We have worked some with it so far, but just really putting the strings out there for the user to read and…
Continue reading → Beginning C++ 93-100: Characters and Strings
Let's continue our journey through controlling the program flow in C++. Last time it was all about evaluating an expression and doing stuff based on…
Continue reading → Beginning C++ 82-92: Controlling Program Flow, part 2
I remember when I first learned to program. It was in BASIC on the good old Commodore 64. There were loads of GOTOs all over…
Continue reading → Beginning C++ 76-81: Controlling Program Flow, part 1
Arrays and Vectors?? I know that an array is like a collection of values. I also know that vectors are used for describing direction and speed in maths. I don't think that's the same here. Well, time to learn some new concepts of the C++ programming language.
This section teaches us the structures of a C++ program. C++ being a static language imposes some pretty strict rules on what you can do and not, so learning how a program is structured is pretty important. This section starts shows us how a C++ program is structured.