C Program to find Area of a Rhombus

Write a C Program to Find the Area of a Rhombus with an example. The mathematical formula to find the Rhombus area is (diagonal1 * diagonal2)/2. This example allows entering first and second diagonals and returns the rhombus area. #include <stdio.h> int main() { float rmD1, rmD2, rmArea; printf(“Enter the Rhombus First diagonal = “); … Read more