Plz send me a Program involving member methods,provoking of methods.
Answers
Answered by
0
Answer:
It is for Java
Explanation:
class cw
{ public int sum(int a, int b)
{ int c= a+b;
return c;}
public void main()
{ int s=cw.sum(4,5)
System.out.println("sum="+s);}}
Similar questions