How to use square root in c programming?

I was trying to use square root in c programming but I have failed. So I want to know How to use square root in c programming?
Can anyone help me?

Brong Asked on June 1, 2016 in Programming.
Add Comment
2 Answer(s)

The C library function double sqrt(double x) returns the square root of x.
I give you a example below so can know how to use square root in c programing.
The following example shows the usage of sqrt() function.

#include <stdio.h>
#include <math.h>

int main ()
{

   printf("Square root of %lf is %lf\n", 4.0, sqrt(4.0) );
   printf("Square root of %lf is %lf\n", 5.0, sqrt(5.0) );
   
   return(0);
}
Brong Answered on August 23, 2016.
Add Comment

In C programming language, the sqrt function returns the square root of x. The syntax for the sqrt function in C programming language is

double sqrt(double x);

Default Answered on December 29, 2019.
Add Comment

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.