Computer Science, asked by sanjanakumari21086, 22 days ago

a WAP in BASIC to calculate the area of square​

Answers

Answered by jadhavrudra8520
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 sarthakm930
0

Area of the Square = side × side

Similar questions