Area Of Rectangle Example C Program
Definition
The area of the rectangle is the length multiplied by the width.
Area Of Rectangle Formula
The area of a rectangle is written as,
A=l*b
where, A=Area l=length b=breadth
Area Of Rectangle Example Program
/*##Area Of Rectangle*/
/*##Calculation Programs, Datatype Programs, Basic Programs*/
#include<stdio.h>
#include<stdio.h>
#include<conio.h>
int main() {
int length, breadth, area;
printf("\nEnter the Length of Rectangle : ");
scanf("%d", &length);
printf("\nEnter the Breadth of Rectangle : ");
scanf("%d", &breadth);
area = length * breadth;
printf("\nArea of Rectangle : %d", area);
return (0);
}
Sample Output
Enter the Length of Rectangle : 5
Enter the Breadth of Rectangle : 4
Area of Rectangle : 20
C Calculation Programs
- Area Of Circle Example C Program
- Area Of Square Example C Program
- Area Of Rectangle Example C Program
- Odd Or Even Example C Program
- Sum of Digits Example C Program
- Circumference Of Circle C Example Program
- Simple C program for print the sum of all odd numbers from 1 to n
- Simple Program for Convert Feet to Inches In C Programming
- Odd Or Even Example C Program Using function
Read More Articles
- Use of getch(),getche() and getchar() in C
- Switch Case Statement Example Program In C Programming Language
- C Character Set
- Convert a Floating-point value to an Integer in C
- Data Input and Output gets and puts Example Program In C
- Special Operators In C
- Pointer Representation and Pointer Example Programs
- C Data Input and Data Output
- Simple While Loop Example Program In C Programming Language
- Data Output printf and putchar Example Program In C
- C Introduction
- C Operators
- Storage Classes In C
- C Pointers
- File Management
- C Identifiers
- Loop Control Statements
- Hello World - Simple C Program
- C Array
- Single Character Output Function : putchar()
- C Reserve Words
- C Specific Properties and Implementation
- If else Statement Example Program In C Programming Language
- If Statement Example Program In C Programming Language
- Confusing Array in C ( Array Representation and Initialization )