Mail Archives: djgpp/1997/06/11/00:42:44
On Tue, 10 Jun 1997 13:50:50 -0700, "KEVIN JOHNSON"
<kevin AT moonlight DOT net> 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 <mert0407 AT sable DOT ox DOT ac DOT uk>
Merton College, Oxford
- Raw text -