strcmp() 함수는 내장 라이브러리 함수이며 "string.h" 헤더 파일에 선언되어 있습니다. 이 함수는 문자열 인수를 비교하는 데 사용됩니다. 문자열을 사전식으로 비교합니다. 즉, 두 문자열을 문자별로 비교합니다. 두 문자열의 문자가 같거나 NULL 문자가 발견될 때까지 문자열의 첫 번째 문자를 비교하기 시작합니다.
두 문자열의 첫 번째 문자가 같으면 두 번째 문자 등을 확인합니다. 이 과정은 NULL 문자가 발견되거나 두 문자가 동일하지 않을 때까지 계속됩니다.
다음은 C 언어의 strcmp() 구문입니다.
int strcmp(const char *leftStr, const char *rightStr );
이 함수는 비교에 따라 다음 세 가지 다른 값을 반환합니다.
1 .Zero(0) − 두 문자열이 모두 동일하면 0을 반환합니다. 모든 문자는 두 문자열에서 동일합니다.
다음은 C 언어에서 두 문자열이 모두 동일한 경우 strcmp()의 예입니다.
Live Demo
#include<stdio.h> #include<string.h> int main() { char str1[] = "Tom!"; char str2[] = "Tom!"; int result = strcmp(str1, str2); if (result==0) printf("Strings are equal"); else printf("Strings are unequal"); printf("\nValue returned by strcmp() is: %d" , result); return 0; }
Strings are equal Value returned by strcmp() is: 0
2.大于零(>0 ) − 当左字符串的匹配字符的ASCII值大于右字符串 字符时,它返回一个大于零的值。
这里是C语言中strcmp()返回大于零值的一个例子,
재线演示
#include<stdio.h> #include<string.h> int main() { char str1[] = "hello World!"; char str2[] = "Hello World!"; int result = strcmp(str1, str2); if (result==0) printf("Strings are equal"); else printf("Strings are unequal"); printf("\nValue returned by strcmp() is: %d" , result); return 0; }
Strings are unequal Value returned by strcmp() is: 32
3.小于零( 当左字符串的匹配字符的ASCII值小于右字符串字符时,它返回一个작은于零的值。
하면是C语言中strcmp()的一个例子
에서 线演示
#include<stdio.h> #include<string.h> int main() { char leftStr[] = "Hello World!"; char rightStr[] = "hello World!"; int result = strcmp(leftStr, rightStr); if (result==0) printf("Strings are equal"); else printf("Strings are unequal"); printf("\nValue returned by strcmp() is: %d" , result); return 0; }
Strings are unequal Value returned by strcmp() is: -32
위 내용은 C/C++에서는 strcmp() 함수를 사용하여 두 문자열을 비교합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!