C Exercises: Accept the height of a person in centimeter and categorize them
7. Height Categorization
Write a C program to accept the height of a person in centimeters and categorize the person according to their height.
Visual Presentation:
Sample Solution:
C Code:
Output:
Input the height of the person (in centimetres) :135 The person is Dwarf.
Flowchart:
For more Practice: Solve these Related Problems:
- Write a C program to categorize a person's height into multiple classes (e.g., Dwarf, Average, Tall) using nested conditions.
- Write a C program to convert height in centimeters to feet and inches, then categorize the person based on the conversion.
- Write a C program to classify height with input validation that rejects unrealistic values.
- Write a C program to read heights from a file and count the number of persons in each category.
C Programming Code Editor:
Previous: Write a C program to read the value of an integer m and display the value of n is 1 when m is larger than 0, 0 when m is 0 and -1 when m is less than 0.
Next: Write a C program to find the largest of three numbers.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.