Computer Science, asked by nithintop4501, 1 year ago

Write a function which will return cube of a given number.

Answers

Answered by vaishnav232
1

int cube()

{

int i;

printf ("Enter a Number to get Cube...");

scanf("%d", &i);

return(i*i*i);

}

Similar questions