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