Neophyte's question raised re: p - (nf)

BergerCA cab at druak.UUCP
Tue Apr 24 01:36:42 AEST 1984


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



More information about the Comp.lang.c mailing list