I know enough that a *
relates to a pointer. I'm still trying to sort that out in my head (pointers versus references.)
I'm working through a C++ book and there is a method signature in it like this:
void DrawBitmap(char *filename, int x, int y)
What does the *
mean in this situation? is it accepting a pointer, or a reference to a variable?
Thanks for any help... and for putting up with an admittedly noob question.