icp/oer/courses/c-newcomers/sections/01-introduction/02-bmi/program.c

7 lines
123 B
C

#include <stdio.h>
int main()
{
printf("My BMI is %f", 0.0); // TODO: Replace the 0.0 with the calculation of your BMI
}