strcat函数是c语言字符串的连接函数,他的功能是将字符串2拼接到字符串1的后面,但是这道题要求不能使用strcat函数,下面来看看如何解!
首先我们得知:
char str1[30]="hello";
char ste2[]="world";
连接完成后:
char str1[30]="helloworld";
答案:
代码语言:javascript复制#include<stdio.h>
int main(){
char str1[30]="hello";
char str2[]="world";
for(int i=5,j=0;str2[j]!='