• 2021-04-14
    以下函数把 b 字符串连接到 a 字符串的后面,并返回 a 中新字符串的长度。请
    填空。
    strcen(char a[], char b[])
    { int num=0,n=0;
    while(*(a+num)!=_____ ) num++;
    while(b[n]){*(a+num)=b[n]; num++; _______ } ;}
    return(num);
    }