ok now work but if statement not work what happend
codice:
fgets(name,25,stdin);
        if(strlen(name) <= 3){
            printf("\nerror %s must at least 4 to 24 charecters ",name);
        }else{
            fputs(name,stdout);
        }