单项选择题下面程序的输出结果是( )。 #include<stdio.h> #include<string.h> main() {char p1[]= WHO ,p2[]= who ,str[50]= xyz ; strcpy(str+1,strcat(p1,p2)); printf( %s ,str);}
单项选择题设有输入语句scanf( a=%d,b=%d,c=%d ,&a,&b,&c),为使变量a的值为2,b的值为4,c的值为8,则从键盘输入数据的正确形式是( )。