C語(yǔ)言中string庫(kù)函數(shù)的使用示例

小樊
83
2024-08-23 11:20:27

#include <stdio.h> #include <string.h>

int main() { char str1[20] = “Hello”; char str2[20] = “World”;

// 將str2拼接到str1的末尾
strcat(str1, str2);
printf("str1 after concatenation: %s\n", str1);

// 比較str1和str2
int result = strcmp(str1, str2);
if (result == 0) {
    printf("str1 and str2 are equal\n");
} else if (result < 0) {
    printf("str1 is less than str2\n");
} else {
    printf("str1 is greater than str2\n");
}

// 復(fù)制str1到str2
strcpy(str2, str1);
printf("str2 after copying: %s\n", str2);

return 0;

}

0