Functions in C++ are building blocks in any program. A function is a named group of statements that perform a specified task. Each function in C++ has a type, a name, and parameters, and may return a value. The parameters themselves have a defined scope — they exist only within the function, serving as local variables.
When defining a function, we specify parameters that act as placeholders for the values that will be passed to the function during its call. These values are known as arguments. In C++, functions can be overloaded, meaning you can have multiple functions with the same name but different parameters.
Function Declaration Versus Definition
In C++, a function declaration tells the compiler about a function's name, return type, and parameters. A function definition, however, provides the actual body of the function. Here's a quick example:
int sum(int a, int b); // Function declaration
int sum(int a, int b) { // Function definition
return a + b;
}