将两个字符串连接成一个。 C

时间:2016-10-12 07:50:45

标签: c string

如何在C中结束字符串?我做了一个函数连接2个字符串并制作一个。我读过我应该用' \ 0'但如何用这样的声明做到这一点?

char* string1= "House";
char* string2= "is big";

2 个答案:

答案 0 :(得分:1)

创建一个足够大的数组,以适应两个字符串和一个终止符。将第一个字符串复制到数组中。使用strcat连接其他字符串。

答案 1 :(得分:1)

试试这个方法

var update = {},
    key = Object.keys(req.body.answer.answer)[0]; // get the dynamic key "122547eee99"

// create the update object with dot notation
update["answer."+key] = req.body.answer.answer[key]; 

demande.update(
    { "_id": req.body.answer.id },
    { $set: update },
    { upsert: true }, 
    function(error, user) {
        if (error) return next(error);
        else {
            return true;
        }
    }
);