/* Find The Square Root Of A Number */
/* Suchetan Dey */
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
float a,b;
printf("Enter The Number For Square Root ");
scanf("%f",&a);
b=sqrt(a);
printf("The Square Root Is %.2f",b);
getch();
}
The Output is :-
No comments:
Post a Comment