C语言所有字符串函数举例如何使用

  1. strcpy: 将一个字符串复制到另一个字符串中
char source[] = "Hello";
char destination[10];
strcpy(destination, source);
  1. strcat: 将一个字符串连接到另一个字符串的末尾
char str1[20] = "Hello";
char str2[] = "World";
strcat(str1, str2);
  1. strlen: 返回字符串的长度
char str[] = "Hello";
int length = strlen(str);
  1. strcmp: 比较两个字符串
char str1[] = "Hello";
char str2[] = "Hello";
int result = strcmp(str1, str2);
  1. strchr: 在字符串中查找特定字符
char str[] = "Hello";
char *ptr = strchr(str, 'e');
if (ptr != NULL) {
    printf("Character 'e' found at position: %d\n", ptr - str);
}

这些都是C语言中常用的字符串函数的例子,它们可以帮助处理和操作字符串。

你可能感兴趣的:(嵌入式C语言开发工程师课程,c语言)