//Square Root of any number
#include<stdio.h>
#include<conio.h>
void main()
{
double num,ans;
printf("Enter any number: ");
scanf("%lf",&num);
ans=sqrt(num);
printf("\n Square root of %lf is: %lf",num,ans);
getch();
}
Enter any number: 144
Square root of 144.000000 is: 12.000000