求大佬解答
给定程序中,程序的功能是:将数组s2中的数字字符拼接到数组
sl后面。请填空。
-------------------------------------------------------*/
#include "stdio.h"
void main()
{
char s1[20]="xy",s2[]="ab12DFc3G",*t1=s1,*t2=s2;
while(*t1!='\0')
/***********SPACE***********/
【?】;
while(*t2!='\0')
{
if(*t2>='0'&&*t2<='9')
{
/***********SPACE***********/
*t1=【?】;
t1++;
}
t2++;
}
/***********SPACE***********/
*t1=【?】;
puts(s1);
}