- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- 授業/C言語基礎/タイピング・ゲーム へ行く。
- 1 (2016-01-21 (木) 00:27:04)
- 2 (2016-01-21 (木) 12:26:31)
- 3 (2016-01-22 (金) 09:19:32)
文字列の比較 †
string.h には、文字列を比較するstrcmp関数が用意されています。
#include <stdio.h> #include <string.h> #include <time.h> int main(void) { char s1[256], s2[256]; printf("メール・アドレスを入力してください:\n"); scanf("%s", s1) printf("もう一度入力してください:\n"); scanf("%s", s2) if (strcmp(s1, s2) == 0) { printf("OK\n"); } else { printf("NG\n"); } return 0; }