From 713d5ae3d0bd62170a5a288c092ae914cb95c6c4 Mon Sep 17 00:00:00 2001 From: Avinash Chaudhary <60030738+Avinash7261@users.noreply.github.com> Date: Mon, 4 Oct 2021 23:10:53 +0530 Subject: [PATCH] Create Area_of_Rectangle.c --- Area_of_Rectangle.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Area_of_Rectangle.c 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; +}