Showing posts with label Area and Perimeter of Square. Show all posts
Showing posts with label Area and Perimeter of Square. Show all posts

Area and Perimeter of Square


#include<stdio.h>
#include<conio.h>
void main()
{
float s,a,p;
clrscr();
printf(“enter the s value:\n”);
scanf(%f”,&s);
a=s*s;
p=4*s;
printf(“area=%f\n perimeter=%f\n”,a,p);
getch();
}
Output:
enter the s value:
5
area=25.000000
perimeter=20.000000 

Labels