Showing posts with label Find the square root of an integer Program. Show all posts
Showing posts with label Find the square root of an integer Program. Show all posts

Jan 30, 2013

Find the square root of an integer Program

/*Find the square root of an integer Program*/

#include"stdio.h"
#include"conio.h"
#include"math.h"
void main()
{
clrscr();
int n,SquareRoot;
printf("Enter the value of n");
scanf("%d",&n);
SquareRoot=sqrt(n);
printf("%d",SquareRoot);
getch();
}

Popular Posts