Advertisements
Advertisements
प्रश्न
What is the information the prototype provides to the compiler?
टीपा लिहा
उत्तर
The prototype above provides the following information to the compiler:
- The return value of the function is of type long.
- Fact is the name of the function.
- The function is called with two arguments:
- The first argument is of int data type.
- The second argument is of double data type, int display(int, int) // function prototype//.
The above function prototype provides details about the return data type, the name of the function, and a list of formal parameters or arguments.
shaalaa.com
User-defined Functions
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
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 are parameters and list their types?
What are default arguments? Give example.
Write a program to accept any integer number and reverse it.