Computer Science, asked by irshadali6016, 1 year ago

C program to find square root of a number without using sqrt function

Answers

Answered by nows1997
0

Program to find Square Root of a Number

/* C Program to find Square root of a Number */

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

int main()

{ double number, result;

printf(" \n Please Enter any Number to find Square root : ");

result = sqrt(number);

printf("\n Square Root a given number %.2lf = %.2lf", number, result);

return 0

http://www.besanttechnologies.in/angularjs-training-in-kalyan-nagar.html

https://www.gangboard.com/app-programming-scripting-training/angularjs-training


Similar questions