diff --git a/Area of square b/Area of square new file mode 100644 index 0000000..deaa66c --- /dev/null +++ b/Area of square @@ -0,0 +1,16 @@ +#include +using namespace std; + +//Compiler version g++ 6.3.0 + +int main() +{ + float radius; + float area; + cout<<"enter length of square"; + cin>>radius; + area=radius*radius; + cout<<"area of square is::"<