关键词

strcat

strcat()函数在c语言中的使用方法

strcat()函数是C语言中用于将两个字符串连接起来的函数。该函数定义在<string.h>库中,用于将字符串src添加到字符串dest的末尾,并将dest的结果返回。

strcat()函数的使用方法

  • strcat()函数的原型为:char *strcat(char *dest, const char *src);
  • 参数dest是一个字符指针,用于指向目的字符串;
  • 参数src是一个常量字符指针,用于指向源字符串;
  • 函数返回值是一个字符指针,指向目的字符串;

strcat()函数的示例

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

int main()
{
    char dest[20] = "Hello";
    char src[20] = "World";
    printf("%s\n", strcat(dest, src));
    return 0;
}

上面的示例中,dest字符串为"Hello",src字符串为"World",程序执行后,dest字符串的值变为"HelloWorld",并且函数返回值也为"HelloWorld"。

本文链接:http://task.lmcjl.com/news/5937.html

展开阅读全文