- C 编程实用资源
- 按示例学习 C - 快速指南
- 按示例学习 C - 资源
- 按示例学习 C - 讨论
在 C 中比较字符串的程序
实现
现在,我们将查看程序的实际实现 −
#include <stdio.h>
int main() {
char s1[] = "advise";
char s2[] = "advice";
int n = 0;
unsigned short flag = 1;
while (s1[n] != '\0') {
if(s1[n] != s2[n]) {
flag = 0;
break;
}
n++;
}
if(flag == 1) {
printf("%s and %s are identical\n", s1, s2);
} else {
printf("%s and %s are NOT identical\n", s1, s2);
}
return 0;
}
输出
此程序的输出应为 −
advise and advice are NOT identical
string_programs_in_c.htm
广告