how to square in c with math.h code example
Example: c math.h sqrt
/*function prototype of sqrt()*/
double sqrt(double arg);
/*sqrt() returns the square root of the number passed on to it
the function is available in the math.h library*/
/*function prototype of sqrt()*/
double sqrt(double arg);
/*sqrt() returns the square root of the number passed on to it
the function is available in the math.h library*/