单项选择题当用户要求输入的字符串中含有空格时,应使用的输入函数是( )。
单项选择题下面程序的输出结果为( )。 #include<string.h> void main() char p1[7]= abc ,p2[] = ABC ,str[50]= xyz ; strcpy(str,strcat(p1,p2)); printf( %s ,str);