??? 10/28/08 13:59 Read: times |
#159411 - any language depends on naming Responding to: ???'s previous message |
But why write so unreadable code?
for (x = 0; (x != 7) || (y ==6) || (p<9); x++){ ... } x and y might possibly have something to do with a LED matrix. But what is then p? And what is the magic with the values 7, 6 and 9) In this case, "x != 7" maybe really is "x < CH_WIDTH". The big problem with code is that people do not think enough about the names of variables and functions and do not make use of named constants. And when they then get into troubles, they blame the programming language. |