C++ Program to find cube of a number using function
#include<iostream.h> #include<conio.h> void main() { clrscr(); //to clear screen float cube(float); //function prototype float a,cu; cout<<“Enter any …
C++ Program to find cube of a number using function Read More »