calculate the area of a rectangle
#include<stdio.h>
#include<conio.h>
main()
{
float a,b,z=0;
printf("enter the length of a rectangle");
scanf("%f",&a);
printf("enter the breadth of a rectangle");
getch();
}
#include<stdio.h>
#include<conio.h>
main()
{
float a,b,z=0;
printf("enter the length of a rectangle");
scanf("%f",&a);
printf("enter the breadth of a rectangle");
getch();
}
0 Comments