欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

typedef struct in c 博客分类: c c 

程序员文章站 2024-03-18 08:54:28
...
typedef struct atom {
  int element;
  struct atom *next;
};

vs.

typedef struct {
  int element;
  struct atom *next;
} atom;

http://*.com/questions/18806392/typedef-struct-declarations
相关标签: c