Computer Science, asked by prasadkawale1415, 9 days ago

Type a program in c to find the area of Square​

Answers

Answered by satamil0505
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