C Program to FIND SQUARE ROOT of the feeded number...

program by-Jayant
#include<conio.h>
#include<stdio.h>
#include<math.h>
void main( )
{
int c;
float a;
clrscr();
printf("Please enter the value whose square root you want to know");
scanf("%d",&c);
a=sqrt(c);
printf("The Square Root of the given Number Is:->%f",a);
getch();
}

No comments:

Post a Comment

Please write your Views about this Post here:->;

Pageviews last month