Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include <stdio.h>
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
int x= 10;
double intx;
cout<<"Give a number :";
cin>>x;
cout<<"Square Root of "<<x<<" :" <<sqrt(x)<<endl;
if(modf(sqrt(x),&intx)!=0) //one line testing
cout<<"Not sqrt thingy"<<endl;
return 0;
}