Here is the simple program for find out the area of rectangle using Structure in C++.
#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