C Programme to find Area Of Rectangle
#include <stdio.h>
#include <stdlib.h>
int main()
{
int Len, Bre;
printf("Enter the Length: ",Len);
scanf("%d/n",&Len);
printf("Enter the Breadth: ",Bre);
scanf("%d/n",&Bre);
printf("Area Of the Rectangle is: %d",Len*Bre);
return 0;
}
Comments
Post a Comment