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

[ad_1]

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

[ad_2]

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