C语言编程:将两个字符串S1和S2连接起来,不用函数streat

2024-11-20 23:28:00
推荐回答(1个)
回答(1):

while(*s1) s1++;
while(*s1 = *s2) {s1++, s2++;}