ADVT POST

volume of a box c program ctutorial beginner

 

volume of a box by taking user input c program

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int l,b,h,v;
printf("enter values");
scanf("%d%d%d",&l,&b,&h);
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.