Before you keep reading...
Runestone Academy can only continue if we get support from individuals like you. As a student you are well aware of the high cost of textbooks. Our mission is to provide great books to you for free, but we ask that you consider a $10 donation, more if you can or less if $10 is a burden.
Before you keep reading...
Making great stuff takes time and $$. If you appreciate the book you are reading now and want to keep quality materials free for other students please consider a donation to Runestone Academy. We ask that you consider a $10 donation, but if you can give more thats great, if $10 is too much for your budget we would be happy with whatever you can afford as a show of support.
4.5. Summary
Like Python, C++ supports the use of functions.
In C++, a function definition requires a name, a group of parameters, a return type, and a body.
Non-fruitful functions in C++ must contain the keyword void
in its function definition.
You can pass variables by value as well as by reference in C++ functions. Passing by reference utilizes the use of pointers.
Pass by reference is useful when you require a function to return multiple variables.
To pass an array to a function you need to use an array parameter. The array parameter is denoted by the array variable name followed by set of square brackets ([ and ]).
You have attempted
1 of
1 activities on this page