填空题 以下函数把b字符串连接到a字符串的后面,并返回a中新字符串的长度。请填空。
surcen(chara[],char b[])
int num=0,n=0;
while(*(a+num)!=______)num++;
while(b[n])*(a+num)=b[n];num++;______;
return(num);
_'/o'或0

  • 1、
【正确答案】 1、'/0'或0, n++或其他使n增1的语句    
【答案解析】