a WAP in BASIC to calculate the area of square
Answers
Answered by
2
WAP in BASIC
Program :
- int main() {
- int side, area;
- printf("\nEnter the Length of Side : ");
- scanf("%d", &side);
- area = side * side;
- printf("\nArea of Square : %d", area);
- return (0);
Answered by
0
Area of the Square = side × side
Similar questions
Math,
1 month ago
Social Sciences,
3 months ago
Math,
3 months ago
Biology,
10 months ago
Math,
10 months ago