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.
#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
Enter the number :10 Area of Rectangle is: 40
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions