Square Root Program – C Language

#include <stdio.h>
#include <stdlib.h>

int main()
{
int a,b;
printf(“Enter the number\n”);
scanf(“%d”,&a);
b=sqrt(a);
printf(“The square root of the number is %d”,b);
return 0;
}