FAs Flashcards
What will happen when we use a void in argument passing?
it will not return a value to its caller
a type of variable inside a function
local
from which function the execution of a C++ program starts?
int main()
what type of function will you use when you are NOT intended to return a value?
void function
the int max (int num1, int num2); code is a function____
decleration
in order to use the sqrt function, we must include the _____ library
cmath
where should default prameters apprear in a function protorype?
to the rightmost side of the parameter list
symbol used to set a default parameter value
=
when the parameter is passed to a function- it is called ___
argument
which value will it take when both user and default values are given?
user value
where does the “return statement” return the execution of the program?
main function
it is the data type of the value of the function returns
return type
library functions are also known as ___ functions
built-in
When do we define the default values for a function?
when a function is declared
what permits function overloading in C++?
type and number of arguments