Skip to content

Instantly share code, notes, and snippets.

@programmingfaster0226
Created June 18, 2018 14:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save programmingfaster0226/04bf3c77f51cb6369657fc5985fb4890 to your computer and use it in GitHub Desktop.
Save programmingfaster0226/04bf3c77f51cb6369657fc5985fb4890 to your computer and use it in GitHub Desktop.
programmingfaster.com
#include<stdio.h>
#include<conio.h>
void main()
{
float l,b,a,p;
printf("enter length and breadth of a rectangle");
scanf("%f%f",&l,&b);
a=l*b;
p=2*(l+b);
printf("the area of rectangle is :%f",a);
printf("\n the perimeter of rectangle is :%f",p);
getch();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment