Write a program to compute the area of square and triangle and rectangle.
Answers
Answered by
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