what does typedef struct node *NODE indicate?

前端 未结 5 1746
遥遥无期
遥遥无期 2021-02-20 01:00
struct node
{
    int coef;

    int exp;

    struct node *link;
};

typedef struct node *NODE;
5条回答
  •  不思量自难忘°
    2021-02-20 01:12

    what does typedef struct node *NODE indicate?

    IT INDICATES A PERSON WHO HAS NOT LEARNED THAT UPPERCASE IS NO GOOD

    Reserve ALL UPPERCASE identifiers for MACROS.

    Cheers & hth.,

提交回复
热议问题