Advertisements
Advertisements
प्रश्न
Answer the following in brief. Give a reason/example wherever applicable.
What are the types of method prototypes?
कारण बताइए
Advertisements
उत्तर
- 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
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 3: User-Defined Methods - Exercises [पृष्ठ ९१]
