博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C 语言实例 - 连接字符串
阅读量:5335 次
发布时间:2019-06-15

本文共 500 字,大约阅读时间需要 1 分钟。

C 语言实例 - 连接字符串C 语言实例 C 语言实例使用 strcat() 连接两个字符串。实例#include 
int main(){ char s1[100], s2[100], i, j; printf("输入第一个字符串: "); scanf("%s", s1); printf("输入第二个字符串: "); scanf("%s", s2); // 计算字符串 s1 长度 for(i = 0; s1[i] != '\0'; ++i); for(j = 0; s2[j] != '\0'; ++j, ++i) { s1[i] = s2[j]; } s1[i] = '\0'; printf("连接后: %s", s1); return 0;}输出结果为:输入第一个字符串: google输入第二个字符串: runoob连接后: googlerunoob

 

转载于:https://www.cnblogs.com/bytebee/p/8535656.html

你可能感兴趣的文章
HTML-meta
查看>>
使用ubifs作为根文件系统的openwrt如何在进行sysupgrade时保存旧的配置
查看>>
Android 异步加载解决方案
查看>>
app 后端技术
查看>>
协程的原理及其在高并发服务中的应用
查看>>
Android的一个自定义的动态添加Dialog类
查看>>
js中对时间的操作
查看>>
php把时间计算成几分钟前,几小时前,几天前的函数
查看>>
微信小程序使用websocket通讯的demo,含前后端代码,亲测可用
查看>>
电梯设计思想(初步)
查看>>
《软件工程概论》第七章核心内容
查看>>
理解Fragment生命周期
查看>>
Android广播——短信拦截
查看>>
WIN10配置MongoDB
查看>>
iOS resign code with App Store profile and post to AppStore
查看>>
python 表格操作
查看>>
LeetCode 84. Largest Rectangle in Histogram
查看>>
LeetCode Two Sum III - Data structure design
查看>>
session和xsrf
查看>>
Failed to initialize NVML: GPU access blocked by the operating system
查看>>