Computer Science, asked by vijay8814, 11 months ago

write a program to find area of square c++

Answers

Answered by jioo65
1
i don't know!!!!!!!!
Answered by Soñador
7

Answer:

#include<constream.h>

void main()

{

clrscr();

int area, side;

cout<<"\n Enter length of side of square";

cin>>side;

area=side*side;

cout<<"\n Area of square ="<<area;

getch();

}

Similar questions