Advertisements
Advertisements
प्रश्न
What are parameters and list their types?
उत्तर
Arguments or parameters are the means to pass values from the calling function to the called function. The variables used in the function definition as parameters are known as formal parameters. The constants, variables, or expressions used in the function call are known as actual parameters.
Types: Default arguments and Constant Arguments.
APPEARS IN
संबंधित प्रश्न
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 is the information the prototype provides to the compiler?
What are default arguments? Give example.
Write a program to accept any integer number and reverse it.