What Is a Function?

When people talk about C++, they mention objects first. Yet objects rely on functions to get their work done. A function is, in effect, a subprogram that can act on data and return a value. Every C++ program has at least one function—main(). When your program starts, main() is called automatically. main() might call other functions, some of which might call still others.

Each function has its own name, and when that name is encountered, the execution of the program branches to the body of that function. This process is known as calling the function. When the function completes all of its code, it returns, and execution resumes on the next line of the calling function. This flow is illustrated in Figure 7.1.

Figure 7.1. When ...

Get SAMS Teach Yourself C++ in 10 Minutes SECOND EDITION now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.