怎麼樣鏈接兩個char*型的字符串變量

直接見代碼 #include <iostream> using namespace std; int main() { char* str1 = "Hello"; char*str2 = "World"; //方式一 char str3[20]; strcpy(str3, str1); strcat(str3, str2); cout <<
相關文章
相關標籤/搜索