matlab中strcat函数用法
时间: 2023-03-24 07:03:13 浏览: 385
matlab中strcat函数的用法.pdf
strcat函数是将多个字符串连接成一个字符串的函数,其用法为:
strcat(str1, str2, ...)
其中,str1、str2等为要连接的字符串,可以是字符数组或字符串常量。连接后的结果会存储在第一个参数str1中,返回值为连接后的字符串。
例如,若要将两个字符串"hello"和"world"连接成一个字符串"helloworld",可以使用以下代码:
char str1[20] = "hello";
char str2[20] = "world";
strcat(str1, str2);
printf("%s", str1);
输出结果为"helloworld"。
阅读全文