??? 06/13/07 21:47 Read: times |
#140727 - one more point for Pascal Responding to: ???'s previous message |
Dan Henry said:
One more:
buf1 U8 xdata[48]; buf2 U8 xdata[48]; This is again something which would not (or less likely) happen in Pascal - the order of "tokens" in declaration is logical there, and human readable - contrary to C. Compare readability of: char buf1 [48]; var buf1: array [0..47] of byte;(the xdata is a nonstandard extension so I cannot comment on that). JW (the C-hater) |