I am trying to concatenate these two items and I get an error about binary conversion.
This is how I have it set up:
bool concatenate (const char* foo, char* bar)
const char* foobar = foo + bar
This is how I have it set up:
bool concatenate (const char* foo, char* bar)
const char* foobar = foo + bar
Comment