My journey learning C++, part 38: Functions, discovering Scope (Local and Global)

I discover creating variables inside functions is a region and the variable is in that region known as a variable in a local scope. And if the variable is created outside a function region is becomes part of a global region and the variable is known to be in a global scope.