June 2025
Intermediate to advanced
1093 pages
33h 24m
English
Declaration and definitionThe declaration only introduces an identifier and provides the compiler information, such as the type. In contrast, the definition also reserves space for the construct. With functions, this is the difference between naming the function head without a function body or with one.
Side effectA side effect occurs when a function changes the state of the program by means other than parameters or return values.
Function callThis is the interruption and later continuation of the current program flow by the body of a function.
Function headerThis is a function declaration, consisting of the return type, function name, and parameters.
Function bodyThese are the statements belonging ...
Read now
Unlock full access