Computer Science, asked by sapna514673, 7 months ago

wap to print the area of the square by accepting the side​

Answers

Answered by kartik4562
4

\huge\mathfrak\green{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);...

Answered by Anonymous
0

Answer:

here's ur answer dude I

Explanation:

Program :

•• int main() { int side, area;

•• printf("\nEnter the Length of Side : "); scanf("%d", &side);

•• area = side * side; printf("\nArea of Square : %d", area);

hope it helps

Similar questions