Answers for "root in C"

C
5

root in C

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

int main()
{
    double num = 6, squareRoot;

    squareRoot =  sqrt(num);
    printf("Square root of %lf =  %lf", num, squareRoot);

    return 0;
}
Posted by: Guest on June-29-2020
1

c sqrt

double sqrt(double arg);
Posted by: Guest on May-14-2020

Code answers related to "C"

Browse Popular Code Answers by Language