Course Content
C++ Introduction
C++ Introduction
Return Statement in Functions
The return statement terminates the execution of a function and returns a value of a predefined type.
If the type is specified incorrectly, the function will behave unpredictably:
main
#include <iostream> unsigned short func() { return -10; } //The unsigned short data type has no negative values. int main() { std::cout << func() << std::endl; }
That is, before creating a function, the type of data that it returns must be specified. Also, in C++, there are special void functions. Functions of this data type are allowed to return nothing:
first_example
second_example
#include <iostream> void voidFunction() { std::cout << "It's void function!" << std::endl; //function without return } int main() { voidFunction(); }
A lot of returns
There can be multiple returns inside functions, and each one will only fire under certain conditions.
main
#include <iostream> int func() { int a = 50; int b = 6; if (a > b) //if a > b, func will return a { return a; } else //otherwise func will return b { return b; } } int main() { std::cout << func() << std::endl; //func calling }
If there are two returns, the second return function will be ignored:
main
#include <iostream> int func() { int a = 50; int b = 6; return a; return b; } int main() { std::cout << func() << std::endl; //func calling }
Thanks for your feedback!