Alan Ingleby wrote: > > unsigned char a[40]; // Keep in mind that this creates a buffer of 40 > bytes, and sets a to be a POINTER to that buffer.
This is not exact. a is an array, not a pointer. It is implicitly converted to a pointer to the element at index 0 whenever needed, though. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
