C语言连接两个字符串

#include stdio.h#include string.hint main() {char s1[10] = Taj;char s2[] = Mahal;

编程学习网为您整理以下代码实例,主要实现:C语言连接两个字符串,希望可以帮到各位朋友。

#include <stdio.h>
#include <string.h>

int main() {
   char s1[10] = "Taj";
   char s2[] = "Mahal";

   int i, j, n1, n2;

   n1 = strlen(s1);
   n2 = strlen(s2);

   j = 0;
   for(i = n1; i< n1+n2; i++ ) {
      s1[i] = s2[j];
      j++;
   }

   s1[i] = '\0';

   printf("%s", s1);

   return 0;
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐