/*Program to find the square of any number using DEFAULT ARGUMENT*/
#include
#include
#include
int main()
{
double n;
cout<<"\nEnter any number"<
double a=power(n);
cout<<"\nSquare of the given number="<OUTPUT :
Enter any number 6
Square of the given number=36