what does typedef struct node *NODE indicate?

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

    int exp;

    struct node *link;
};

typedef struct node *NODE;
5条回答
提交回复
热议问题