pointer addresses
Easy question. When a pointer points to a structure, does it hold just the address of the first data member or does it hold the address for each data member
For instance:
struct POINT
{
int x;
int y;
}
What would a pointer hold? Just the base address?
Still Learning...
Still Learning...
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement