Building a BMI Calculator in C: A Personal Project
#include <stdio.h>
/**
* main - BMI calculator
* description - Calculates the Body Mass Index (BMI)
* Return: 0
*/
int main(void)
{
/* Declaring variables */
float height;
float weight;
float BMI;
printf("Enter your height in cm: ...
codewithwhizz.hashnode.dev2 min read