Advertisements
Advertisements
Question
What are default arguments? Give example.
Solution
In C++, one can assign default values to the formal parameters of a function prototype. The Default arguments allow omitting some arguments when calling the function.
1. For any missing arguments, the compiler uses the values in default arguments for the called function.
2. The default value is given in the form of variable initialization.
Example : void defaultvalue(int n1 = 10, n2 = 100);
3. The default arguments facilitate the function call statement with partial or no arguments.
Example :
- defaultvalue (x, y);
- defaultvalue (200, 150);
- defaultvalue (150);
- defaultvalue (x, 150);
4. The default values can be included in the function prototype from right to left, i.e., we cannot have a default value for an argument in between the argument list.
Example:
- void defaultvalue (int n1=10, n2);//invalid prototype.
- void defaultvalue (int n1, n2 = 10);//valid prototype.
APPEARS IN
RELATED QUESTIONS
Which function begins the program execution?
Which of the following function is with a return value and without any argument?
Which is the return data type of the function prototype of add(int, int);?
Define Functions.
What is the importance of void data type?
What are parameters and list their types?
What is the information the prototype provides to the compiler?
Write a program to accept any integer number and reverse it.