Como concatenar uma string e um caractere const?

Eu preciso colocar "hello world" em c. Como posso fazer isso ?

string a = "hello ";
const char *b = "world";

const char *C;