Computer Science, asked by divyanshbindal140, 5 hours ago

Write an int function cube () that returns the cube of its single int formal
parameter

Answers

Answered by kawipanbou
5

Answer:

int cube(int x) {

return x*x*x;

}

Similar questions