You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
343 B
C

/*
* C Program to Find Area of rhombus
*/
#include <stdio.h>
int main()
{
float diagonal1, diagonal2;
float area;
printf("Enter diagonals of the given rhombus: \n ");
scanf("%f%f", &diagonal1, &diagonal2);
area = 0.5 * diagonal1 * diagonal2;
printf("Area of rhombus is: %.3f \n", area);
return 0;
}