// Write a Program to find Area of Rectangle
#include <iostream.h>
#include <conio.h>
void main ()
{
int area,l,b;
clrscr ();
cout <<"Enter Length: ";
cin >>l;
cout <<"Enter Breadth: ";
cin >>b;
area=l*b;
cout <<"\n Area is: "<<area;
getch ();
}
Free C programs with output, C++ (C plus plus), programs c programming language, object oriented programming, c programs codes, c program shortcuts, history of c programming language, c programming compilers