WAP to input side of a square and calculate the area of square. Add screen shot plz
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);
Similar questions