Re: C question for you old guys ;-)
Re: C question for you old guys ;-)
- Subject: Re: C question for you old guys ;-)
- From: Mark Heath <email@hidden>
- Date: Mon, 23 Jun 2003 08:49:34 +1000
- Versions: dmail (solaris) 2.2d/makemail 2.8u
>
Hi there,
>
>
to get back on topic of programming, could anybody of you tell me why
>
this bit of code produces two different results?
>
>
>
freeSpacePointer adress = 0x00040000; // Really a ((unsigned char *)
>
0x00040000)
>
long tryToGet = 1024; // 0x400
>
>
// return freeSpacePointer + tryToGet; /* Doesn't work... Why? */
^^^^^^^^^^^^^^^^
Silly question but shouldn't this be
return address + tryToGet;
?
Mark
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.