Path: utzoo!utgpu!news-server.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!ucbvax!hplabs!hpl-opus!hpnmdla!hpmwtd!jeffa From: jeffa@hpmwtd.HP.COM (Jeff Aguilera) Newsgroups: comp.lang.c Subject: Re: Nested Comments in C -- A recent experience Message-ID: <680021@hpmwjaa.HP.COM> Date: 15 Mar 90 19:00:31 GMT References: <1990Mar11.065712.9798@usenet.ins.cwru.edu> Organization: HP Microwave Tech. - Santa Rosa, Ca. Lines: 12 > 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: ----- jeffa