Learn/C/C — Beginner/Functions/Checkpoint: Functions/BMI ToolkitBMI ToolkitChallenge on lesson: Checkpoint: FunctionsInstructionsCodeOutputImplement double bmi(double weight_kg, double height_m) = weight / (height*height), and const char* bmi_band(double b): <18.5 -> "under", <25 -> "normal", <30 -> "over", else "obese".Difficulty: beginnerSubmitPress Submit to check your solution.Back to lesson: Checkpoint: Functions