#include <string> std::string str = "Hello World"; log("%s", str.c_str()); // Hello World
str += "hoge";