在C语言中,字符串是一系列字符的集合,以空字符’\0’结尾。要使用字符串,你需要声明一个字符数组来存储字符串。下面是一些基本操作和示例:
#include<stdio.h>
int main() {
// 方法1: 使用字符数组声明字符串
char str1[10] = "Hello";
// 方法2: 使用字符指针声明字符串
char *str2 = "World";
printf("str1: %s\n", str1);
printf("str2: %s\n", str2);
return 0;
}
#include<stdio.h>
#include<string.h>
int main() {
char str[] = "Hello, World!";
int length = strlen(str);
printf("字符串长度: %d\n", length);
return 0;
}
#include<stdio.h>
#include<string.h>
int main() {
char str1[] = "Hello, ";
char str2[] = "World!";
char result[20];
strcpy(result, str1); // 将str1复制到result
strcat(result, str2); // 将str2拼接到result
printf("拼接后的字符串: %s\n", result);
return 0;
}
#include<stdio.h>
#include<string.h>
int main() {
char str1[] = "apple";
char str2[] = "banana";
int comparison_result = strcmp(str1, str2);
if (comparison_result == 0) {
printf("str1 和 str2 相等\n");
} else if (comparison_result < 0) {
printf("str1 小于 str2\n");
} else {
printf("str1 大于 str2\n");
}
return 0;
}
#include<stdio.h>
#include<string.h>
int main() {
char source[] = "Hello, World!";
char destination[20];
strcpy(destination, source);
printf("复制后的字符串: %s\n", destination);
return 0;
}
这些示例展示了如何在C语言中使用字符串。请注意,在处理字符串时,确保不要越界访问数组,因为这可能导致未定义行为。