// find square root of any Number #include<stdio.h> #include<math.h> int main(){ int num; printf("Enter any number:\n"); scanf("%d",&num); printf("Square root: %.2f",sqrt(num)); return 0; }Note: Click on copy button to copy the given code and you can paste it in any online compiler to see the result, IF YOU ARE A MOBILE USER THEN DOWNLOAD "CODING C"(Free App) COMPILER FROM GOOGLE PLAY STORE.