Computer Science, asked by pranaviskrishna, 3 months ago

Write a program to accept side from the user and display the area of a square.

Answers

Answered by maha2608
0

Answer:

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);

And bro who is your enemy my enemy is computer but i learned it

Similar questions