Computer Science, asked by phdbsnd, 1 month ago

Write a program to compute the area of square and triangle and rectangle.

Answers

Answered by neharawat66029
1

Answer:

here is the answer

Explanation:

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