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