& operator - (nf)
andree at uokvax.UUCP
andree at uokvax.UUCP
Mon Dec 19 13:50:14 AEST 1983
#R:iwu1a:-16200:uokvax:3000014:000:331
uokvax!andree Dec 16 21:04:00 1983
James -
In C, you can take the address of anything but a real, live
expression - a + b, c + d, etc. Since in++ is identical to in (with a
side effect), *in++ is identical to *in (with the same side effect).
Since &(*in) is valid (you can take the address of a char), &(*in++) is
valid, and SHOULD be the same as &(*in).
<mike
More information about the Comp.lang.c
mailing list