More on pointers/arrays: Function Arguments

Doug Gwyn gwyn at brl-vgr.ARPA
Thu Apr 12 02:09:44 AEST 1984


A formal parameter like
	type	parm[];
is fully equivalent to
	type	*parm;
since you cannot pass arrays as actual arguments (only pointers to them).
Compilers that are careful about lvalues treat both cases of `parm' as
lvalues.



More information about the Comp.lang.c mailing list