引数として渡された文字列が特定の文字のみで構成されているかを判断する関数を作りたい。
今回はアルファベットのみで構成された文字列を特定する関数を作成している。
コンパイルエラーが出ているが原因がわからない。
環境:iMac
言語:C言語
int test(char *str){ while (*str){ int i = 0; if ('A' <= str[i] >= 'Z' || 'a' <= str[i] >= 'z' || str[i] == '\0'){ i++; }else{ return 0; } }return 1; } /*Here is the test code*/ #include <stdio.h> int test(char *str); int main(void) { printf("number 0: %d\n", test("12334465")); printf("only alphabet1 1: %d\n", test("aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ")); printf("alphabet and number 0: %d\n", test("aBsHdjDnknk09888")); printf("alphabet and sign1 0: %d\n", test("a[BsHdjDnknk")); printf("alphabet and sign2 0: %d\n", test("a@BsHdjDnknk")); printf("only alphabet2 1: %d\n", test("aZBsHdjDnzknAk")); printf("empty 1: %d\n", test("")); } /*gccコンパイルしたところエラー*/ test.c:6:21: error: result of comparison of constant 90 with boolean expression is always false [-Werror,-Wtautological-constant-out-of-range-compare] if ('A' <= str[i] >= 'Z' || 'a' <= str[i] >= 'z' || str[i] == '\0'){ ~~~~~~~~~~~~~ ^ ~~~ test.c:6:45: error: result of comparison of constant 122 with boolean expression is always false [-Werror,-Wtautological-constant-out-of-range-compare] if ('A' <= str[i] >= 'Z' || 'a' <= str[i] >= 'z' || str[i] == '\0'){ ~~~~~~~~~~~~~ ^ ~~~ 2 errors generated.