Computer Science, asked by Asin7, 8 months ago

algorithm to find the area of square

Answers

Answered by Imblank
1

Explanation:

int area,side;

scanf("%d",&side);

area = side*side;

print("%d",area);

Answered by harsini77
2

Answer:

c program to calculate area of square (flowchat)

Explanation:

1) start

2) input x

3) sq=x*x

4) print sq

5) stop

Similar questions