`
standalone
  • 浏览: 596847 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

typedef struct in c

    博客分类:
  • c
c 
阅读更多
typedef struct atom {
  int element;
  struct atom *next;
};

vs.

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

http://stackoverflow.com/questions/18806392/typedef-struct-declarations
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics