write a program to print the area of square by accepting the value of side from user. [Hint: area of square= side × side]
No spam or else Reported Lesson- Small Basic
Answers
Answered by
1
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);
Answered by
0
Answer:
Hello!!!
I am fine...
And how are you??
I was drawing...
And wbu?
Similar questions
Computer Science,
2 months ago
Hindi,
2 months ago
English,
2 months ago
Math,
5 months ago
Math,
10 months ago