linked list in C II
I have seomthing of this format
this represents my node format, and I have another structure defined within this struture and say one of the declarations of the structure xyz is int k
As far as i remember C , I can call the value of the variable k as below right?
typedef struct
{
struct xyz
} node ;
node ->xyz.a ?