Tuesday, 9 July 2013

Program to find Volume of a Cuboid

#include <stdio.h>
void main()
{
int l,b,h,volume;
clrscr ();
printf("Enter the number");
scanf("%d%d%d",&l,&b,&h);
volume=l*b*h;
printf("%d",volume);
getch();

}

No comments:

Post a Comment