Computer Science, asked by msnirchitha, 1 year ago

Proggraming in visual basic :calculate the perimeter of a square whose side is 4cm

Answers

Answered by veersingh63
2

1

2

3

4

5

6

7

8

9

10

11

12

13

#include<stdio.h>

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);

}

Similar questions