Answer :

#include<stdio.h>

#include<math.h>

int main ()

{

int num;

float root;

printf("Enter the number of which you want to find the square root number : ");

scanf("%d",&num);

root=sqrt(num);

printf("The squareroot of the number is %f.2",root);

}

Output :