admin 管理员组文章数量: 887021
2024年1月25日发(作者:进入oppo手机官方网站)
c语言中string.h的用法
在C语言中,string.h是一个头文件,提供了一些常用的字符串处理函数。下面是string.h中一些常用函数的用法:
strlen():用于获取字符串的长度,即字符串中字符的个数。
#include
int main() {
char str[] = "Hello, world!";
int length = strlen(str);
printf("Length of the string: %dn", length);
return 0;
}
strcpy():用于将一个字符串复制到另一个字符串。
#include
int main() {
char source[] = "Hello";
char destination[10];
strcpy(destination, source);
printf("Copied string: %sn", destination);
return 0;
}
strcat():用于将一个字符串追加到另一个字符串的末尾。
#include
int main() {
char str1[] = "Hello";
char str2[] = " world!";
strcat(str1, str2);
printf("Concatenated string: %sn", str1);
return 0;
}
strcmp():用于比较两个字符串是否相等。
#include
int main() {
char str1[] = "Hello";
char str2[] = "Hello";
int result = strcmp(str1, str2);
if (result == 0) {
printf("Strings are equaln");
} else {
printf("Strings are not equaln");
}
return 0;
}
这些函数只是string.h中一部分常用函数的示例,该头文件还提供了其他一些字符串处理函数,如strncpy()、strncat()、strncmp()等。
版权声明:本文标题:c语言中string.h的用法 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1706177031h503084.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论