Comments Comments are pivotal for C++ and every other programming language. They allow you to leave remarks to yourself and anyone else who may read…
Comments Comments are pivotal for C++ and every other programming language. They allow you to leave remarks to yourself and anyone else who may read…
Input Input is used to take information from the person using the program. In C++ we use a cin statement that we got from the…
If statement There are times when you want the program to respond differently to different events. Say for example you wanted to display a certain…
Loops Say you were a programmer for a major university who needed to create a program to input 3000 grades. You could sit there for…
Files If you’ve ever spent anytime at all looking at the programs in your computer, you may notice that very few are one file. Programs…
Arrays Say that you wanted to keep track of 100 people in variables, you could make a loop and keep them all in one variable,…
Prewritten Functions C++ doesn’t offer many built in keywords or functions, and that’s alright because with many compilers comes standard header files. These header files…
Writing Functions In the previous section we looked at functions that have already written. Now we are going to write our own function. In a…
Visual BASIC is a programming language developed by Microsoft. It is a robust language that can be used for Windows application development, database access, game…
Visual BASIC is an object oriented programming language that is native to the Windows Operating system. It was derived from the QBASIC programming language in…