VC 怎么两个字符串连接起来合并成 一个字符串

2025-04-15 01:55:31
推荐回答(1个)
回答1:

CString str1 , str2;
str1=str1+str2;
如果是char* 或 char [], 用strcat( )