我已经使用定义了一个值
#define username "admin"
然后我想在 char 语句中使用用户名到 sql 作为
const char *pSQL[1];
pSQL[1] = "update websrv_config set admin_id='" + username + "'";
但似乎有错误
error: invalid operands of types ‘const char [36]’ and ‘const char [6]’ to binary ‘operator+’
我怎样才能克服它?