BMI calculator program in c programming
#include
/**
main - Programme to build BMI calcutor to find a patient BMI
Description: a programm to print BMI of a patient
Return: 0
*/
int main()
{
float height, weight, BMI;
printf("Enter patient height: \n");
scanf("%f", &height);
printf("Enter...
abiorh.hashnode.dev1 min read