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

2024年11月20日 23:28
有1个网友回答
网友(1):

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