Taxidriver
Programmer
Hello, supposing I have a structure like this:
struct node {
int data;
struct node *next;
}
if I define a pointer called *node that points to an object of the type "node" how much space should I allocate to the pointer and how that value is calculated?
Thank you.
struct node {
int data;
struct node *next;
}
if I define a pointer called *node that points to an object of the type "node" how much space should I allocate to the pointer and how that value is calculated?
Thank you.