diff --git a/Area_of_Rectangle.c b/Area_of_Rectangle.c new file mode 100644 index 0000000..0082117 --- /dev/null +++ b/Area_of_Rectangle.c @@ -0,0 +1,10 @@ +#include + +int main(){ + int l,b,area; + printf("Enter the length and breath of Rectangle "); + scanf("%d,%d",&l,&b); + area=l*b; + printf("The Area of the Rectangle is %d",area); + return 0; +}