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

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); }

  • 上一篇: vs2015未定义标识符
  • 下一篇: html的表单
  • 版权声明


    相关文章:

  • vs2015未定义标识符2024-11-22 16:01:02
  • 线程死锁的四个必要条件2024-11-22 16:01:02
  • chroot原理深入剖析2024-11-22 16:01:02
  • 命令提示符修复win10启动2024-11-22 16:01:02
  • 移位指令应用实例2024-11-22 16:01:02
  • html的表单2024-11-22 16:01:02
  • win10打开本地策略编辑器2024-11-22 16:01:02
  • 三态与非门的三种状态2024-11-22 16:01:02
  • php8 opcache2024-11-22 16:01:02
  • java中的单例设计模式2024-11-22 16:01:02