Path: utzoo!utgpu!news-server.csri.toronto.edu!clyde.concordia.ca!mcgill-vision!bloom-beacon!mintaka!yale!think!samsung!usc!elroy.jpl.nasa.gov!decwrl!ucbvax!hplabs!hpda!hpwala!hpavla!gary From: gary@hpavla.AVO.HP.COM (Gary Jackoway) Newsgroups: comp.lang.c Subject: Re: Nested Comments in C -- A recent experience Message-ID: <9130008@hpavla.AVO.HP.COM> Date: 13 Mar 90 13:19:13 GMT References: <1990Mar11.065712.9798@usenet.ins.cwru.edu> Organization: Hewlett-Packard Avondale Division Lines: 20 > (void) memcpy(/*targ*/ (void *) &x, /*src*/ (void *) &y, sizeof(y)); Aid. ---------- Can anyone actual understand this line? I find imbedded comments like this a nuisance. Wouldn't // target: source: (void) memcpy((void *) &x, (void *) &y, sizeof(y)); be more readable? Or maybe: /* Copy y into x */ (void) memcpy((void *) &x, (void *) &y, sizeof(y)); Just a thought. Gary Jackoway