English
Tamil Nadu Board of Secondary EducationHSC Science Class 11

What are default arguments? Give example. - Computer Science

Advertisements
Advertisements

Question

What are default arguments? Give example.

Answer in Brief

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 :

  1. defaultvalue (x, y);
  2. defaultvalue (200, 150);
  3. defaultvalue (150);
  4. 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:

  1. void defaultvalue (int n1=10, n2);//invalid prototype.
  2. void defaultvalue (int n1, n2 = 10);//valid prototype.
shaalaa.com
User-defined Functions
  Is there an error in this question or solution?
Chapter 11: Functions - Evaluation - Section - C [Page 205]

APPEARS IN

Samacheer Kalvi Computer Science [English] Class 11 TN Board
Chapter 11 Functions
Evaluation - Section - C | Q 6. | Page 205
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×