1.
Write
a C program to calculate the area of four walls.
#include<stdio.h>
#include<conio.h>
int main()
{
int l,b,h,a;
printf("Enter
length: ");
scanf("%d",
&l);
printf("Enter
breadth: ");
scanf("%d",
&b);
printf("Enter
height: ");
scanf("%d",
&h);
a=2*h*(l+b);
printf("Area
of four walls= %d", a);
return 0;
}
Good πfor students πor user thanks alot thank you π RAM RAM ZEEEEEE ππΌππΌππΌππΌ
ReplyDelete