From: nospam DOT lyrian AT geocities DOT com Newsgroups: comp.os.msdos.djgpp,rec.games.programmer Subject: Re: Abrash's collumns Date: 10 Jun 1997 22:36:58 GMT Organization: EuroNet Internet Message-ID: <339dd7f6.237913570@pc04> References: <5nk7oa$sc2$1 AT axe DOT netdoor DOT com> NNTP-Posting-Host: dialwa017.ib.be Lines: 16 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk On Tue, 10 Jun 1997 13:50:50 -0700, "KEVIN JOHNSON" wrote: >any one know where i can find an online copy of Ramblings in realtime >series >I have already searched at ddj.com but they are not ther.. > > Try teeri.oulu.fi, /pub/msdos/programming/codesrc The last directory might be wrong, I don't remember. I think the file name is something like xsharp???, named after Michael's anim proggy. -indy > not exactly the same. The func2 takes a pointer that is constant, i.e. : > you'll get warnings when you try to modify its value. : uh-um ... what does that mean? no offense, but where exactly do you get : the notion that : void func2(int p[]) : { : p[0] = 42; : return; : } I think the original implication was that void test(int p[]) { p++; } would create a warning, which still isn't true. The analogy is, of course, with: void test() { int p[5]; p++; } being incorrect. -- George Foot Merton College, Oxford