#include <stdio.h>
#include <stdlib.h>
#include <math.h>
float squareroot(float a)
{
float sqt;
sqt = sqrt(a);
return sqt;
}
float main()
{
system("cls");
float a;
printf("Enter a number:\n");
scanf("%f", &a);
printf("Square root of given number is: %f", squareroot(a));
return 0;
}
//.......Coded by JAIDEEP JAMBLE
#ENJOY CODING
Post a Comment
FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP