Saturday, July 16, 2011

Write a c program to find the area of a rectangle




C
program for area of a rectangle



Formula of
area of rectangle:



Area = length * width



C code:



#include



int main(){



float l,w;

float area;



printf("Enter
size of each sides of the rectangle : ");

scanf("%f%f",&l,&w);



area
= l * w;

printf("Area of
rectangle is: %.3f",area);



return 0;

}



Sample
output:



Enter size of each

No comments:

Post a Comment