Please read the guide .
Please answer the question in detail
#include <stdio.h> #include <math.h> int main () { double x, result; printf("Enter a number\n"); scanf("%lf", &x); result = sqrt(x); printf("Square root of %lf = %lf\n", x, result); return 0; }
Doubtly is an online community for engineering students, offering:
Get the pro version for free by logging in!
5.7k questions
5.1k answers
108 comments
554 users