大家好,
我的问题是,如何将两个C样式字符串附加到一个字符串中?
被C++的处事方式(std::string)所困扰,我从未接触过C风格的字符串,并且需要为我当前的开发项目了解更多有关它们的信息。例如:
char[] filename = "picture.png";
char[] directory = "/rd/";
//how would I "add" together directory and filename into one char[]?
提前致谢。
最佳答案
使用strcat()
。
看到这里:http://www.cplusplus.com/reference/clibrary/cstring/strcat/
关于c++ - 操纵C风格的琴弦?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4251419/