BMI calculator
#include <stdio.h>
int main()
{
double weight;
double height;
printf("Enter your Weight in kilograms: ");
scanf("%lf", &weight);
printf("Enter your Height in meters: ");
scanf("%lf", &height);
double s = (height ...
mahmoudblog.dev1 min read