The "order" of columns in a table are an artifact of the way tables are defined - one of the key concepts of relational databases is that columns are located by name, not by ordinal position.
The actual layout of the columns in the database may not match the order that you've given - for instance, if you have multiple bit columns defined on the table, each set of eight will be packed into a single byte, no matter where they appear in the table definition.
For another example, all fixed length columns are packed at the start of the row. So in your example ABC table, the order of the columns in each row on disk would actually be A, C, B (but with some additional structures also appearing before column A, and between C and B.
In short, no, the order of columns in the table should not have any impact.
You can also find plenty of examples of questions on SO where people are asking for ways to insert a column at a particular position within the table, and given similar answers - it should not matter where the column appears in the table definition - all that matters is where the column appears in select lists and, as you've mentioned, within index definitions.
You should also not conflate primary key and clustered index - the two do not have to be tied together. It's just the default behaviour that the primary key will become the clustered index on the table, if there isn't already a clustered index defined.