An organization aims to promote health awareness among its employees by creating
An organization aims to promote health awareness among its employees by creating a Body Mass Index (BMI) chart. BMI is a commonly used indicator of a person’s body weight relative to their height, helping to identify potential health risks associated with weight.
As a C programmer, you are tasked with developing a software for the organization. The software should collect and process BMI data for a minimum of 5 employees (use loop). Accept name and ID for an employee.
Accept input, weight (in kilograms) and height (in meters).
Calculate the BMI using the formula, BMI = weight (kg) / (height (m) * height (m))
Display the total number of employees under Healthy Weight category.
Refer to the table below to decide the category.
Leave a Reply