AREA OF A RECTANGLE

#include<stdio.h>
#include<conio.h>
void main()
{
float l,b,a;
clrscr();
printf("enter the value of length");
scanf("%f",&l);
printf("enter the value of breadth");
a=l*b;

printf("area of triangle is %f",a);
getch();
}

0 comments: (+add yours?)

Post a Comment