当执行下面的程序时,如果输入ABC,则输出结果是( )。
#include
main()
{ char ss[10]="1,2,3,4,5":
gets(ss);strcat(ss,"6789");printf("%s\n",ss);
}