C 速查手冊
11.3.5 strcmp()
string.h 的函數 (function) strcmp() ,需要兩個字串 (string) 當作參數 (parameter) ,比較兩個字串是否相等,相等就回傳 0,第一個字串大於第二個字串回傳正值,反之回傳負值。
以下程式比較字串 s 與字串 t 是否相等
#include <stdio.h>
#include <string.h>
int main(void)
{
char s[] = "Hello, world!";
char t[] = "Hello, my friend!";
int test = strcmp(s, t);
if (test == 0) {
printf("All right!\n");
}
else {
if (test > 0) {
printf("%s\n", s);
}
else {
printf("%s\n", t);
}
}
return 0;
}
/* 《程式語言教學誌》的範例程式
http://kaiching.org/
檔名:cstrcmp.c
功能:示範 string.h 中函數 strcmp() 的使用
作者:張凱慶 */
編譯後執行,結果如下
$ gcc cstrcmp.c |
$ a.out |
Hello, world! |
$ |