Nested Comments in C -- A recent experience

Jeff Aguilera jeffa at hpmwtd.HP.COM
Fri Mar 16 05:00:31 AEST 1990


>	memcpy(&x,&y,sizeof(y));	/* Copy y into x	*/

But that comment is completely superfluous and totally redundant :-)  Why not

	memcpy(&x,&y,sizeof(y));	/* RTFM */

or

	memcpy(&x,&y,sizeof(y)); //use: <string.h>

-----
jeffa



More information about the Comp.lang.c mailing list