Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created July 1, 2021 11:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/8aa9d10f867c9322bf28158f604c3a22 to your computer and use it in GitHub Desktop.
Save amankharwal/8aa9d10f867c9322bf28158f604c3a22 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <cmath>
using namespace std;
int main(){
double x = 20;
cout<<"Square Root of 20 is "<<sqrt(x)<<endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment