Advertisement

WAP IN C TO FIND AREA OF RECTANGLE


 
AREA OF RECTANGLE 

#include<stdio.h>


int main()
float  l,b,a;
    printf("enter the value of length and breath resp.\n ");
    scanf("%f%f",&l,&b);
    a=l*b;
    printf("area of rectangle is =%f",a);
    return(0);
}





Post a Comment

0 Comments