Computer Science, asked by experimentalcrew824, 20 days ago

WAP to input side of a square and calculate the area of square. Add screen shot plz​

Answers

Answered by rakshitmalik296
0

Answer:

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