struct node
{
int coef;
int exp;
struct node *link;
};
typedef struct node *NODE;
|
It defines Personally, I don't think that such declaration is a good idea: you're "hiding a pointer" (which is almost always a bad idea), and, moreover, you are not highlighting this fact in any way into the new name. |
|||||||||||||||||
|
|
It makes |
|||||||||
|
|
EDIT: Okay, for the comment (if I write my answer as comment, it would be too long and not formatted): There's no different way to write this. Here,
is the same as
Using The format, you're referring: "typedef struct{}type_name format" is something else. It's kind of a trick in
would make
is the same as
NOTE that now, |
|||||||||||||
|
IT INDICATES A PERSON WHO HAS NOT LEARNED THAT UPPERCASE IS NO GOOD Reserve ALL UPPERCASE identifiers for MACROS. Cheers & hth., |
|||
|
|
struct node *instead ofNODE. It's more readable, IMHO. – ninjalj Oct 29 '11 at 21:05