Write a c program to calculate the area of a rectangle

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();
}

Post a Comment

0 Comments