often that (valid) complaint is to do with stuff like: Myvar = *myptr++
Ie where assigns or data retrieval and increments happen are combined on the same line. I do think if ++ -- etc are added to the language, it should only permit increments etc on separate lines. Otherwise it does as you say lead to very unreadable code. I would not want to see stuff like Myvar = anothervar++ But: mycounter++ Or myvar += 2 Are perfectly readable. On 12/10/06 16:08, "John Kubie" <[EMAIL PROTECTED]> wrote: > I've spent a little time in C. The main complaint about C is that > it's too cryptic and therefore difficult to read. _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
