I am getting confused with typedef can anyone transcribe this to a normal composition? of structures? I really don\'t want to handle typedef since it\'s gets me confuse
If you don't want to use typedef you can always use full type name:
typedef
Instead of:
StackNode sn;
You would use:
struct stackNode sn;
StackNodePtr snp;
struct stackNode *snp;
The declarations are exactly the same.