Computer Science, asked by rishitababbarahhps, 4 months ago

write a program to calculate area of square​

Answers

Answered by mohitbehera350
0

Answer:

Program in Java or c or Python??

Answered by GitaTatei
0

Answer:

#include<stdio.h>

#include<conio.h>

void main()

{

float side,area;

clrscr();

printf("\n Enter the Length of Side : ");

scanf("%f",&side);

area = side * side ;

printf("\n Area of Square : %f",area);

getch();

}

OUTPUT:

Enter the Length of Side : 4

Area of Square : 16

I hope it is helpful....

Similar questions