a program  in C language that calculate the BMI category based on user input using 'switch-case'.

Explanation
1. The program first asks the user to input their weight in kilograms and height in meters.
2. It calculates the BMI using the formula BMI = weight / (height * height).
3. Based on the calculated BMI, it assigns a category number (1 for underweight, 2 for normal weight, 3 for overweight, and 4 for obese).
4. The program then uses a switch-case statement to print out the corresponding BMI category based on the category number assigned.


Previous :-->> 10. Write a program in C to check if a year is a leap year using 'if-else' statements. 
NEXT: 12.Implement a program C language to check if a character is an alphabet, digit, or special character using 'if-else' statements.
-->>ALL Conditionl statements Programs