C语言strcat()函数:字符串连接(拼接)
C语言 strcat() 函数用来将两个字符串连接(拼接)起来。
头文件:string.h
语法/原型:
strcat() 函数把 strSource 所指向的字符串追加到 strDestination 所指向的字符串的结尾,所以必须要保证 strDestination 有足够的内存空间来容纳两个字符串,否则会导致溢出错误。
注意:strDestination 末尾的
返回值:指向 strDestination 的指针。
【实例】使用C语言 strcat() 函数将用户输入的两个字符串拼接在一起。
C++ Python Linux Java Shell Qt C# Servlet↙
http://c.biancheng.net↙
C++ Python Linux Java Shell Qt C# Servlethttp://c.biancheng.net
头文件:string.h
语法/原型:
char*strcat(char* strDestination, const char* strSource);
参数说明:- strDestination:目的字符串;
- strSource:源字符串。
strcat() 函数把 strSource 所指向的字符串追加到 strDestination 所指向的字符串的结尾,所以必须要保证 strDestination 有足够的内存空间来容纳两个字符串,否则会导致溢出错误。
注意:strDestination 末尾的
\0
会被覆盖,strSource 末尾的\0
会一起被复制过去,最终的字符串只有一个\0
。返回值:指向 strDestination 的指针。
【实例】使用C语言 strcat() 函数将用户输入的两个字符串拼接在一起。
#include <stdio.h> #include <string.h> int main(){ char str1[101] = { 0 }; char str2[50] = { 0 }; gets(str1); gets(str2); strcat(str1, str2); puts(str1); return 0; }运行结果:
C++ Python Linux Java Shell Qt C# Servlet↙
http://c.biancheng.net↙
C++ Python Linux Java Shell Qt C# Servlethttp://c.biancheng.net
所有教程
- socket
- Python基础教程
- C#教程
- MySQL函数
- MySQL
- C语言入门
- C语言专题
- C语言编译器
- C语言编程实例
- GCC编译器
- 数据结构
- C语言项目案例
- C++教程
- OpenCV
- Qt教程
- Unity 3D教程
- UE4
- STL
- Redis
- Android教程
- JavaScript
- PHP
- Mybatis
- Spring Cloud
- Maven
- vi命令
- Spring Boot
- Spring MVC
- Hibernate
- Linux
- Linux命令
- Shell脚本
- Java教程
- 设计模式
- Spring
- Servlet
- Struts2
- Java Swing
- JSP教程
- CSS教程
- TensorFlow
- 区块链
- Go语言教程
- Docker
- 编程笔记
- 资源下载
- 关于我们
- 汇编语言
- 大数据
- 云计算
- VIP视频