#include<stdio.h>
#include<conio.h>
void main()
{
int len,bre,area;
printf(“Enter the Length and Breadth : ”);
scanf(“%d%d”,&len,&bre);
area=len*bre;
printf(“\nArea = %d”,area);
getch();
}
OUTPUT :
Enter the Length and Breadth : 4
3
0 comments:
Post a Comment