HomeC courses Program to find area of rectangle in C by Er.Sandesh Thakur -November 30, 2025 Program to find area of rectangle (A=l*b)#include<stdio.h>int main(){ int l,b,A; printf("enter the value of l and b\n"); scanf("%d%d",&l,&b); A=l*b; printf("the area of rectangle is %d",A); return 0;} Tags: C courses Facebook Twitter