Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.1 6/24/83; site druak.UUCP Path: utzoo!linus!decvax!harpo!ihnp4!drutx!druak!cab From: cab@druak.UUCP (BergerCA) Newsgroups: net.lang.c Subject: Re: Re: Neophyte's question raised re: p - (nf) Message-ID: <617@druak.UUCP> Date: Mon, 23-Apr-84 10:36:42 EST Article-I.D.: druak.617 Posted: Mon Apr 23 10:36:42 1984 Date-Received: Tue, 24-Apr-84 01:04:48 EST References: <299@iuvax.UUCP> Organization: AT&T Information Systems Laboratories, Denver Lines: 14 I understand the desire for uniform evaluation of expressions in various versions in C. There are plenty of things that make me uncomfortable as well. Expressions of the type s++ = ( s & 0x7f ); and the like just LOOK dangerous. I prefer the safer approach of s &= 0x7f; s++; which may generate slightly less efficient code of known semantics. Charlie Berger ...!druak!cab ATT Denver