c_cpp strcat的()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp strcat的()相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include <string>
using namespace std;

int main() {
	char str1[30] = "Hello ";
	char str2[] = "world!";
	cout << strcat(str1, str2) << endl;	// Hello world!
}

以上是关于c_cpp strcat的()的主要内容,如果未能解决你的问题,请参考以下文章

C语言 strcat_s 函数

C语言strcat函数怎么用

零基础学C语言带你解析字符串连接函数:strcat_s 函数

重写strcat函数,以实现strcat的功能

C语言中strcat和strcpy的区别

strcat & 覆盖