Squareroot of a number in C - 👑 सार्थक मुंड S3 🤴🏻

Squareroot of a number in C

Squareroot of a number in C

Write a program (WAP) in C to calculate Square root of a number.

#include <stdio.h>
#include <math.h>
int main()
{
    double num, squareRoot;
    printf("Enter a number : ");
    scanf("%lf", &num);
    squareRoot =  sqrt(num);
    printf("Square root of %0.2lf =  %0.4lf", num, squareRoot);
    return 0;
}
Try it Yourself ➠
Squareroot of a number in C
 
Must Read :-
  1. Blogger Tutorial
  2. C Programs
  3. C++ Programs
  4. Java Programs
  5. Python Programs
  6. Programming Notes 
  7. Questions & Answers
  8. My Codes : HTML, CSS & JS
  9. All Subject Notes
Previous article
Next article

Leave Comments

Post a Comment

Articles Ads

Articles Ads 1

Articles Ads 2

Advertisement Ads