Find out the area of rectangle using Structure in C++


The program defines a struct Rectangle with two integer fields width and height. It then declares a variable rec of type Rectangle, sets its width and height fields to 8 and 5 respectively, and calculates and prints the area of the rectangle (width * height) to the console.

Source Code

#include<iostream>
using namespace std;
struct Rectangle
{
    int width,height;
};
int main(void)
{
    struct Rectangle rec;
    rec.width=8;
    rec.height=5;
    cout<<"Area of Rectangle is: "<<(rec.width * rec.height)<<endl;
    return 0;
}
To download raw file Click Here

Output

Enter the number :10
Area of Rectangle is: 40

Program List


Flow Control

IF Statement Examples


Switch Case


Goto Statement


Break and Continue


While Loop


Do While Loop


For Loop


Friend Function in C++


String Examples


Array Examples


Structure Examples


Structure & Pointer Examples


Structure & Functions Examples


Enumeration Examples


Template Examples


Functions


Inheritance Examples

Hierarchical Inheritance


Hybrid Inheritance


Multilevel Inheritance


Multiple Inheritance


Single Level Inheritance


Class and Objects

Constructor Example


Destructor Example


Operator Overloading Example


Operator and Function Example


List of Programs


Pointer Examples


Memory Management Examples


Pointers and Arrays


Virtual Function Examples