ADVT POST

volume of a box c program

volume of a box c program


#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int l,b,h,v;
l=10;
b=20;
h=30;
v=l*b*h;
printf ("%d",v);
getch();
}
Share on Google Plus
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment

Note: only a member of this blog may post a comment.