zoukankan      html  css  js  c++  java
  • c语言,strcat(),字符串拼接


    #include<stdio.h>
    #include<string.h>
    int main()
    {
     char destination[25];
     char  *zhang="zhang ",*er=" er",*xiong=" xiong";
     strcpy(destination,zhang);//这相当于初始化
     strcat(destination,er);
     strcat(destination,xiong);

     printf("%s ",destination);
     
     return 0;
    }
  • 相关阅读:
    cJSON库源码分析
    cJSON 使用详解
    day23
    day22
    作业21
    day21
    作业20
    day20
    作业
    day19
  • 原文地址:https://www.cnblogs.com/wsq724439564/p/3258177.html
Copyright © 2011-2022 走看看