[Solved] What is the meaning of this typedef struct in C language? [closed]


It makes elmtadress an alias for struct elmt *. If you use this, you can type:

elmtadress myStruct;

instead of

struct slmt *myStruct;

Read more here: http://www.tutorialspoint.com/cprogramming/c_typedef.htm

1

solved What is the meaning of this typedef struct in C language? [closed]