C语言拼接字符串

C语言拼接字符串,第1张

C语言拼接字符串
 
static void Splicing(const char* one ,const char* two , char* result ){
  register int i ;
  for( i = 0 , j = 0 ; ; ++i ){// 将子一个字符串放进接收结果字符串里面
    if( ono[ i ] == '' ){
      result[ i ] =  '' ;
      break;
    } else{
      result[ i ] =  one[ i ] ;
    }
  }
  for( register int j = 0 ; ; ++j , ++i ){/// 将第二个字符串放进接收结果的字符串里面,索引起始值 在第一个字符串 (边界)索引位置 开始
    if( two[ j ] == '' ){
      result[ j ] =  '' ;
      break ;
    } else{
      result[ i ] =  two[ j ] ;
    }
  }
}
int main(){
  const char one[100] = "123456";
  const char two[100] = "789";
  char result[100];
  Splicing( one ,two , result ) ;
  printf("输出拼接后的字符串:%s " , result ) ;
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5659698.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存