下面程序的运行结果是(   ).
#include
#include
using namespace std;
int main( )
{
 char s1[10]="abc";
 char s2[20]="inter";
 int k=0,j=0;
 while (s2[k]) k++;
 while(s1[j])
    s2[k--]=s1[j++];
 cout<
return 0;
}
A、inter
B、abc
C、interabc
D、intcba