5. 写出下列程序运行的结果。
main ()
{ char str1[30]=”hello “;
char str2[]=”friend”;
printf(“%s”,strcat(str1,str2));
}
出自:西安石油大学-C语言程序设计