How to calculate square root in C programming

How to calculate square root in C programming

One of various computer programming languages, C is the most basic and widely used language, likely because it gives maximum efficiency and control to programmers. The C language can be used for mathematical operations, ranging from additions and subtractions to square roots and cube roots, along with other polynomial powers that can be created through C programming. To find the square root of a number, you can customize the C script to code the logic by using the sqrt function.

To find a square root in C program, here is sample program:

#include <math.h>    
#include <stdio.h>    
int main(void)    
{    
double x = 4.0, result;    
result = sqrt(x);    
printf("The square root of %lf is %lf \n", x, result);    
return 0;    
} 
Need more help with C programming? Check out our Forum!