#include<iostream.h> #include<conio.h> void main() { int num,ans; clrscr(); cout<<"Enter any Number: "; cin>>num; ans=sqrt(num);; cout<<"\n Squre of "<<num<<" is: "<<ans; getch(); }