newbie to c++,
Currently, I have a hard coded json stored in a char array
static CHAR data[]= "{\"id\":1, \"name\":\"test\"}";
I want to make the values
in the json coming from dynamic values
for instance
int id = 1;
std::wstring name = "joe";
May I ask how can I achieve that,thanks