Given the struct definition:
struct node {
int id; // int size is 4 bytes
char* name; // A pointer, not an array
struct node* previous; // pointer to previous node
struct node* next; // pointer to next node in list};
What is the size of the node type?
a. 4 bytes
b. 8 bytes
c. 16 bytes
d. 12 bytes