Area of Rectangle : C Program

Computer Science » C Program » Area of Rectangle

Definition :

1. A plane figure with 4 sides and 4 right angles and having equal opposite sides.
2. Adjucent sides makes an angle of 90 degree.
3. You can compute the area of a Rectangle if you know its length and breadth.

Image :

Formula :

area (A) = w * h

Where,
A is the area of the rectangle
w is the width of the rectangle
h is the height of the rectangle

Program :

#include<stdio.h>
 
int main() 
{
   int width, height, area;
 
   printf("nEnter the Width of Rectangle : ");
   scanf("%d", &width);
 
   printf("nEnter the Height of Rectangle : ");
   scanf("%d", &height);
 
   area = width * height;
   printf("nArea of Rectangle : %d", area);
 
   return (0);
}

Output :

Enter the Width of Rectangle : 4
Enter the Height of Rectangle : 2
Area of Rectangle : 8
Subject Name : Computer Science
Exam Name : IIT GATE, UPSC ESE, RRB, SSC, DMRC, NMRC, BSNL, DRDO, ISRO, BARC, NIELIT
Posts Name : Assistant Engineer, Management Trainee, Junior Engineer, Technical Assistant
Computer Science Books

GATE 2023 Total InfoENGG DIPLOMAUGC NET Total Info
IES 2023 Total InfoPSUs 2022 Total InfoCSIR UGC NET Total Info
JAM 2023 Total InfoM TECH 2023 Total InfoRAILWAY 2022 Total Info

Related Posts

  • Area of Square : C ProgramComputer Science » C Program » Area of Square  Definition : 1. A plane rectangle with four equal sides and four right angles. 2. A four-sided regular polygon. 3. You can compute the area of a Square if you know the length of its sides. Image : Formula : [php]area (A) = a²[/php] Where, A is the area of the Square a is the side of the Square Program : [php]#include<stdio.h> int main() { int side, area; printf("nEnter the Length of Side : "); scanf("%d", &side); area = side * side; printf("nArea of Square : %d", area); return (0); }[/php] Output : [php]Enter the Length of Side : 2 Area of Square : 4[/php]
    Tags: area, program, sides, output, formula, image, length, compute, angles, equal
  • Rectangle using Line and Special Symbols : C ProgramComputer Science » C Program » Rectangle using Line and Special Symbols Program : [php]#include<stdio.h> int main() { int i, j; for (i = 0; i < 10; i++) { printf("n"); for (j = 0; j < 10; j++) { if (i == 0 || i == 9 || j == 0 || j == 9) printf("▲"); else printf("-"); } } return (0); }[/php] Output : [php]▲▲▲▲▲▲▲▲▲▲ ▲--------▲ ▲--------▲ ▲--------▲ ▲--------▲ ▲--------▲ ▲--------▲ ▲--------▲ ▲--------▲ ▲▲▲▲▲▲▲▲▲▲[/php]
    Tags: program, rectangle, computer, science, output, programs
  • Perimeter of Rectangle : C ProgramComputer Science » C Program » Perimeter of Rectangle  Definition : 1. A plane figure with 4 sides and 4 right angles and having equal opposite sides. 2. Adjucent sides makes an angle of 90 degree. 3. You can compute the area of a Rectangle if you know its length and breadth. Image : Formula : [php]perimeter (P) = l + b + l + b = 2 (l + b)[/php] Where, P is the perimeter of the Rectangle l is the side of the Rectangle Program : [php]#include<stdio.h> int main() { float length,breadth,perimeter; printf("nEnter the length of Rectangle : "); scanf("%f",&length); printf("nEnter the breadth of Rectangle : "); scanf("%f",&breadth); perimeter = 2 * (length * breadth); printf("nPerimeter of Rectangle : %f", perimeter); return (0); }[/php] Output : [php]Enter the length of Rectangle : 2.0 Enter the breadth of Rectangle : 2.0 Perimeter of Rectangle : 8.0[/php]
    Tags: rectangle, program, sides, degree, output, formula, image, breadth, length, area
  • Perimeter of Square : C ProgramComputer Science » C Program » Perimeter of Square  Definition : 1. A plane rectangle with four equal sides and four right angles. 2. A four-sided regular polygon. 3. You can compute the area of a Square if you know the length of its side. Image : Formula : [php]perimeter (P) = a + a + a + a = 4a[/php] Where, P is the perimeter of the Square a is the side of the Square Program : [php]#include<stdio.h> int main() { float side,perimeter; printf("nEnter the side of Square : "); scanf("%f",&side); perimeter = 4 * side; printf("nPerimeter of Square : %f", perimeter); return (0); }[/php] Output : [php]Enter the side of Square : 2.0 Perimeter of Square : 8.0[/php]
    Tags: program, output, formula, image, length, area, compute, angles, sides, equal
  • Area of Parallelogram : C ProgramComputer Science » C Program » Area of Parallelogram  Definition : & Image : Formula : [php]area (A) = b * h[/php] Where, A is the area of the Parallelogram b is the base of the Parallelogram h is the height of the Parallelogram Program : [php] #include<stdio.h> int main() { float base,height,area; printf("nEnter the base of Parallelogram : "); scanf("%f", &base); printf("nEnter the height of Parallelogram : "); scanf("%f", &height); area = base * height; printf("nArea of Parallelogram : %f", area); return (0); }[/php] Output : [php]Enter the base of Parallelogram : 2.0 Enter the height of Parallelogram : 4.0 Area of Parallelogram : 8.0[/php]
    Tags: area, program, computer, science, definition, image, formula, height, output, programs

LEAVE A REPLY

Please enter your comment!
Please enter your name here