>For example, C code might be: > > if (i = j + k) l = 5; > >The Pascal equivalent would have to be written as two statements: > > i := j + k; > if i <> 0 then l := 5; The guy that wrote the book that Microchip supplies, 'Beginners Guide to Embedded C Programming' (Microchip stock number BK0003) takes the latter approach, but reading through the book, it is clear that it is because of his lack of understanding of C (other constructs he uses throughout the book reinforce this view). -- http://www.piclist.com PIC/SX FAQ & list archive View/change your membership options at http://mailman.mit.edu/mailman/listinfo/piclist