If I want to write a phrase like "Column 1" in snake case (the usual C way of formatting identifiers that looks like some_function
), do I insert underscore between a word or a number, like column_1
, or not, like column1
?
That may be a painfully trivial question, but I haven't been able to find a snake case definition that would answer this.