So, I see pointers defined in many different ways but I never quite understood what the difference was. Could someone explain it to me?
Examples:
int * a; int* a; int *a
That second one may or may not be actual C++ but I've seen it done in all those ways.