Write a function which will return cube of a given number.
Answers
Answered by
1
int cube()
{
int i;
printf ("Enter a Number to get Cube...");
scanf("%d", &i);
return(i*i*i);
}
Similar questions
Geography,
7 months ago
History,
7 months ago
India Languages,
7 months ago
Math,
1 year ago
Math,
1 year ago