i remember an online argument on a forum like 15 years ago where one set of people would say "each to their own" and the other would say "to each their own" and remarkably both sides were able to explain to the other why the syntax made sense to them. there were posts like "oh, you mean each person to their own preference!" i often think of it when there's some nomenclature thing which basically doesn't matter but both sides seem unable to see where the other is coming from
anyway, with this in mind, can someone explain something to me? in C, i tend to write this:
int* x;
i write it like that because i believe i am bringing into existence x, whose type is "a pointer to an integer". it's not an int, it's an int pointer. so i write int*, because that's what type it is. it seems clearer that way. however i often see this:
int *x;
this seems less clear, but some (most?) people obviously think THAT way is the clearer way. if you do, what's your thought process?