Friday, September 2, 2016

Tags

PROGRAM TO FIND CUBE OF A GIVEN NO:


#include<iostream>
#include<math.h>
using namespace std;
main()
{int a;
cout<<"enter no to find cube";
cin>>a;
cout<<pow(a,3);

}