Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created July 1, 2021 11:46
Embed
What would you like to do?
#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