调试运行下列程序,分析程序的功能,输入What are you doing now?后,程序的输出结果是什么? #include
#include
main( ) { int i,n; char str[80],s[80]; scanf(“%s”,str); strcpy(s,str); for(i=1;i<4;i++) { scanf(“%s”,str); if(strcmp(str,s)>0) strcpy(s,str) ; } puts(s); } (1) 预测此程序的输出结果为:_____________________________________ (2) 程序运行后屏幕显示结果为:___________________________________