当前位置:网站首页 > 技术博客 > 正文

malloc函数的格式



通过字符串函数连接两个字符数组:

#include "stdafx.h" #include <iostream> using namespace std; void main() { char str1[50], str2[30], *p1, *p2; p1 = str1; p2 = str2; cout << "please input string1:" << endl; gets_s(str1); cout << "please input string2:" << endl; gets_s(str2); strcat_s(str1, str2);//对字符串也行,对数组也行 cout << "the new string is:" << endl; puts(str1); }

版权声明


相关文章:

  • 线程死锁的四个必要条件2024-11-22 16:01:02
  • chroot原理深入剖析2024-11-22 16:01:02
  • 移位指令应用实例2024-11-22 16:01:02
  • java在线编程工具2024-11-22 16:01:02
  • eof函数用法2024-11-22 16:01:02
  • 三态与非门的三种状态2024-11-22 16:01:02
  • php8 opcache2024-11-22 16:01:02
  • 生成openid2024-11-22 16:01:02
  • geohm c2024-11-22 16:01:02
  • python菜鸟教程32024-11-22 16:01:02