floatsquare(float);//Declaring the function square. Input parameter is a decimal number, return value is the square of the input number.
voidcircularArea(floatradius);//Declaring the function circularArea. Input parameter is a decimal number (radius), no return value, output is the circular area.
floatsquare(float);// Declaring the function square. Input parameter is a decimal number, return value is the square of the input number.
voidcircularArea(floatradius);// Declaring the function circularArea. Input parameter is a decimal number (radius), no return value, output is the circular area.