CString的问题.急
char buf[1024];
memset( buf,0,sizeof(buf) );
int postion;
postion = 0;
sprintf( buf+postion,"%s","8613012345678" );
postion +=21;
sprintf( buf+postion,"%s","8613912345678" );
CString str;
str.Format("内容是:%s",buf);
MessageBox( str );
str结果为什么是 内容是:8613012345678,后面的8613912345678 去哪里了。