#include<iostream.h> #include<conio.h> inline float cube(float value) { return value*value*value; } main() { clrscr(); float number; cout<<\"\\n Enter the value of the number = \"; cin>>number; cout<<\"\\n The cube of the number \"<<number<<\" = \"<<cube(number)<<endl; getch(); return 0; }