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 ", s1, s2); } else { printf("%s and %s are NOT identical ", s1, s2); } return 0; }
输出
此程序的输出应为 −
advise and advice are NOT identical