What does this error mean and how can I solve it?
"argument of type 'const char*' is incompatible with parameter of type char*'"
I have this C++ method defined as:
void output(int x, int y, char*string)
and I'm trying to call it like this:
output(-11, 6, "Top");