November 2014
Beginner
632 pages
19h 31m
English
CHAPTER 8
![]()
Defining Functions
Segmenting a program into manageable chunks of code is fundamental to programming in every language. A function is a basic building block in C++ programs. So far every example has had one function, main(), and that has typically used functions from the Standard Library. This chapter is all about defining your own functions with names that you choose.
In this chapter you will learn: