文字列同士を比較する・strcmp †文字列と文字列が同じかどうか比較するにはstrcmpを使用します。 スポンサーリンク 関連記事 †strcmpの書式 †
書式を確認すると以下のようになります。
strcmpのCサンプルコード †strcmp.c (改行コードLF) #include <stdio.h> #include <string.h> int main(void) { char *a = "abcdefg"; char *b = "abcdefg"; char *c = "ABCDEFG"; if (0 == strcmp(a, b)) { printf("strcmp(a, b) : a and b are the same.\n"); } else { printf("strcmp(a, b) : a and b are different.\n"); } if (0 == strcmp(b, c)) { printf("strcmp(b, c) : a and b are the same.\n"); } else { printf("strcmp(b, c) : a and b are different.\n"); } return 0; } strcmpのCサンプルコード実行結果 †以下にコンパイルおよび実行結果を記します。 $ gcc strcmp.c -o strcmp $ ./strcmp strcmp(a, b) : a and b are the same. strcmp(b, c) : a and b are different. 以上、strcmpのCサンプルコードでした。 スポンサーリンク |