Type a program in c to find the area of Square
Answers
Answered by
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);
Explanation:
hope it helps you :)
Similar questions