Exam 1 Practice Programming with C

Vitamin D is an important vitamin. The following table shows serum concentrations of the Vitamin D and correspondent health status:

Vitamin D serum concentrations (integer) Health Status
11 or less Very Deficient
12 - 19 Deficient
20 - 49 Adequate for bone and overall health
50 or above Overdose, High level, potential health risk

Write a function void vitamin_D that has one parameter Vitamin D level in the blood test. The function prints the Health Status. Write a program that first reads the number of people who came to the lab for Vitamin D testing. For each person, the program reads the Vitamin D level in the blood test. The program prints the Health Status for each person.