C++ Variable Scope

Now that you understand how functions work, it is important to learn how variables act inside and outside of functions.

In C++, variables are only accessible inside the region they are created. This is called scope.

Continue reading C++ Variable Scope