#include <stdio.h>

int main() {
    float height;
    printf("enter your height: ");
    scanf("%f",&height);
    if (height<150){
        printf("\nyou are short");
    }
    else if (height>150 && height<165){
        printf("\naverage height");
    }
    else if (height>165){
        printf("\nyou are tall");
    }
    else {
        printf("\nabnormal height");
    }
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: