.Write a C program using library function to calculate the area of a
square.
Answers
Answered by
1
- 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
1
Answer:
What feature automatically list down the filtering options?
Explanation:
What feature automatically list down the filtering options?
Similar questions