123 Eng

Engineering the engineers™


Latest Jobs   Forum Map

 


Home
Source Codes
Engineering Colleges

Training  Reports
Seminar Reports
Placement Papers

Forums

   Computer Science / IT
   Electronics
   Electrical
   Mechanical
   Chemical
   Civil

   CAT / MBA

   GMAT / Foreign MBA
Latest Jobs

Engineering Jobs / Technical Jobs
Management Jobs

Sitemap
Terms of use

Displaying  Source Code(s)  
 

 
Square Root of a number by using simple calculations

--------------------------------------------------------------------------------

Description : This is a very simple program with simple logic to find square root of a number. By simple modifications you can find also nth root of a number also.

#include<stdio.h>
#include<conio.h>
main()
{
float a,b,e=0.00001,p,k;
clrscr();
textcolor(GREEN);
do {
printf(" лллллллллллллллллллллллллллллллллллллллллллллллл ллл<BR>);
printf(" xDB PROGRAM TO FIND SQUARE ROOT OF A NUMBERxDB<BR>);
printf(" лллллллллллллллллллллллллллллллллллллллллллллллл ллл<BR>);
cprintf("
ENTER A NUMBER(-1 to Quit) :");
scanf("%f",&k);

a=k;p=a*a;
while(p-k>=e)
{
b=(a+(k/a))/2;
a=b;
p=a*a;
}
printf("SQUARE ROOT IS = %f<BR>,a);
getch();
clrscr();
}while(k!=-1);
getch();
}
 

 

 

Contribute content or training reports / feedback / Comments
job placement papers
All rights reserved Љ copyright 123ENG