| OUTPUT |
LEARN HOW TO USE TEXT OUTPUT IN C/C++ |
|
| This tutorial displays the first use of text
output using cout.. |


|
|
| VARIABLE |
LEARN ABOUT DIFFERENT VARIABLES IN C/C++ |
|
| Learn how to declare and define different variables in C/C++. |


|
|
| INPUT |
LEARN ABOUT INPUT |
|
| This tutorial displays your first use of input uses cout and cin.. |


|
|
| FUNCTION |
LEARN ABOUT FUNCTIONS |
|
| Learn to declare and define different functions, and see how different functions handles the same type of task. |


|
|
| IF ELSE |
LEARN ABOUT IF AND ELSE |
|
| Learn how to use the if and the if else statements. |


|
|
| SWITCH CASE |
LEARN ABOUT SWITCH CASE |
|
| Learn to use the switch case statement. |


|
|
| FOR LOOP |
LEARN HOW TO USE A FOR LOOP |
|
| You should always use a for loop when the amount of repetitions is known. Learn how to use a for loop. |


|
|
| DO WHILE LOOP |
LEARN HOW TO USE A DO WHILE LOOP |
|
| Learn how to use a do while loop. |


|
|
| ARRAY |
USE DIFFERENT ARRAYS |
|
| This tutorial demonsterates the use of arrays. Arrays are a series of elements (variables) of the same type placed consecutively in memory that can be individually referenced by adding an index to a unique name. |


|
|
| REFERENCE |
USE REFERENCES |
|
| This tutorial demonsterates the use of references. The ability to use a reference is one of the things that separates c++ from the other programming languages. A Reference can be defined as an extra name for an already existing variable. When you see this symbol & in c++ it means that a reference is used. |


|
|
| POINTER |
USE POINTERS |
|
| This tutorial demonsterates the use of pointers. Pointers are one of the most hated and loved subjects in c++. It's one of the things that separates c++ from the other programming languages. If you handle pointers right, you will be able to increase the speed of your applications, and decrease the amount of used memory. When you see this symbol * in c++ it means that a pointer is used. |


|
|
| POINTER AND REFERENCE |
USE POINTERS AND REFERENCES |
|
| This tutorial demonsterates the use of pointers and references. The pointer and reference functions are taken from the previous tutorials. I published this extra tutorial just to let you see them together. |


|
|
| HEADER FILE |
CREATE A HEADER FILE |
|
| Learn to use a header file in c/c++.
This program is the same program as in the Function Tutorial. The only difference is that this program uses an extra header file.
Header files can be used to gain global access to your functions. They can also be used to obtain more structured programming as your program grow larger. |


|
|
| SOURCE FILE |
MULTIPLE HEADER AND SOURCE FILES |
|
| Learn to use a multiple header and source files in c/c++.
This program is almost the same program as in the Header File Tutorial.
The header file can be used to gain global access to your functions. Your functions can be called from different source files as long as the header file is included. Use this to methods to obtain more structured programming as your programs grow larger. |


|
|
| STRUCT |
USE A STRUCT |
|
| Learn how to use a Struct to ease and systemize your programming. A structure type is a user-defined composite type. It is composed of fields or members that can have different types. In C++, a structure is the same as a class except that its members are public by default. |


|
|
| CLASS |
OBJECT ORIENTED PROGRAMMING |
|
| In c++ you can use object oriented programming. The class keyword declares a class type or defines an object of a class type. A class can be seen as a compleate engine or a small program. In this tutorial you will learn to different ways to use classes. |


|
|