Wap to input side of a square and
find out its area and perimeter c++
Answers
Answered by
2
ANSWER
FOR TURBO C++
# include<iostrem.h>
#include<conio.h>
int main() //function main begins program execution
{
int square_area, square_side;
cout << "Enter the side of square:";
cin >> square_side;
square_area = square_side * square_side;
cout << "Area of Square: " << square_area << endl;
return 0;
clrscr() ;
} // end main
mark me brainliest
Similar questions