Advertisements
Advertisements
Question
Answer the following in brief. Give a reason/example wherever applicable.
What are the types of method prototypes?
Give Reasons
Advertisements
Solution
- Method prototype with no parameters: A method that does not accept any arguments.
Example:void display(); - Method prototype with parameters: A method that accepts one or more arguments.
Example:void add(int a, int b);
Reason: Method prototypes define the method name, return type, and parameters before the actual method implementation.
shaalaa.com
Is there an error in this question or solution?
Chapter 3: User-Defined Methods - Exercises [Page 91]
