//Write a program to find volume of box
#include <iostream.h>
#include <conio.h>
void main ()
{
int area,l,b,h;
cout <<"Enter Length, Breadth and Height: ";
cin >>l >>b >>h;
area=l*b*h;
cout <<"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