Defining Your Own C++ Functions
This mini guide covers exactly what you need to know about defining your own C++ functions, and nothing more. Why define functions? The premise behind any function in any language is simple: encapsulate a process under one name. Then, by calling that name (invoking the function), you can repeat that sequence of steps with ease. New to C++? No problem. You’ll get all the fundamentals, techniques, and key concepts you need to understand how to define and call your own functions. First you’ll create...