Q:

c sqrt

#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;
}
1
#include <math.h>
double sqrt(double arg);
0
double sqrt(double arg);
0

New to Communities?

Join the community