typedef struct
{
char Flight[10];
int iRequested;
} Request;
typedef struct Node
{
Request request;
struct Node *pNext;
} Node;
I've always been troubled with linked lists so as I'm writing this code Im having trouble accessing a a variable of a struct within a struct. I'm having errors compiling the way I try to go about this problem. How can I access a struct variable within a struct? using pointers preferably, thank you!