Write an int function cube () that returns the cube of its single int formal
parameter
Answers
Answered by
5
Answer:
int cube(int x) {
return x*x*x;
}
Similar questions