单选题 下面程序的输出结果是( )。
#include <iostream.h>
#include "string.h"
void main()
char a[]="welcome",b[]="well";
strcpy(a,b);
cout<<a<<endl;

A.wellome B.well com C.well D.well we

【正确答案】 C
【答案解析】