相关疑难解决方法(0)

typedef struct node*NODE表示什么?

struct node
{
    int coef;

    int exp;

    struct node *link;
};

typedef struct node *NODE;
Run Code Online (Sandbox Code Playgroud)

c

12
推荐指数
3
解决办法
2万
查看次数

标签 统计

c ×1