Site icon Learn C++

Learn About C++ Functions

Functions, also known as Procedures or Sub-ProgramsSub-Algorithms, allow to structure programs in segments of code to perform tasks. A Function is a group of statements that has function a name and can be called with parameters to operate, functions can be called from some point of the program or they can call themselves recursively. All C++ programs have a main() function which holds the main program, we can start all subprograms inside, and all these subprograms are called as a function.

We can group our lines of code into separate statements to do different tasks. We can define functions by specifying a name and and a set of () parenthesis, after this definition, all the statements in this function are listed inside { } braces. How we divide up code among different functions is up to the programmer, logically each function should perform a specific task.

We can create a function without parameters or with parameters, it may return us some results or not. Here is a simple function below, without any parameters and it has no returns,

[crayon-6606865ae6f8e897580948/]

when naming a function we can NOT use spaces and we can not start with numbers, most of punctuation characters are NOT allowed, generally we use _ character as a space and we can add numbers to the end, like this,

[crayon-6606865ae6f9a951745472/]

Note that C & C++ programming language is case sensitive, so be careful when using upper cases. In general, most basic standard library functions and user-defined functions are fully lower case and functions that are used by third party libraries, APIs, some modern C++ libraries has functions that start with Upper case and continues with lowercase words.

Let’s see a simple function. Think that we have an application, and at some point, we want to give information about our application. Let’s name the function info() and let’s define as below,

[crayon-6606865ae6f9c325118732/]

We can call this function in the main() function by calling its name with ; at the end.

[crayon-6606865ae6fa1012022982/]

This is a very simple C++ example;

[crayon-6606865ae6fa6339977802/]

as you see we defined our info() function before the main() function. We can define it after the main functions, to do this we must declare this function with its parameters. Please see future posts about declaring functions and using parameters.

Get started building powerful apps with C++Builder!

Exit mobile version