HomeC-Programming 2. WAP to input length and breadth of rectangle and display area. bySaugat chaudhary -June 27, 2022 0 Code#include <stdio.h>int main(){ int l,b,a; printf("Enter the length: "); scanf("%d",&l); printf("Enter the breadth: "); scanf("%d",&b); a = l*b; printf("Area of rectangle is: %d",a); return 0;}Output
Post a Comment
---[[ For More Inquiry Comment Down Below or Contact Us ]]---