KnowledgeBoat Logo
|

Computer Applications

Debug the errors and rewrite the following method prototypes:

(a) int sum(x,y);

(b) float product(a,int y);

(c) float operate(int x, float=3.4);

(d) float sum(int x,y);

User Defined Methods

85 Likes

Answer

(a) int sum(int x, int y)

(b) float product(float a, int y)

(c) float operate(int x, float y)

(d) float sum(int x, float y)

Answered By

49 Likes


Related Questions