学而不思则罔,思而不学则殆

有其事必有其理, 有其理必有其事

  IT博客 :: 首页 :: 联系 :: 聚合  :: 管理
  85 Posts :: 12 Stories :: 47 Comments :: 0 Trackbacks
gcc的不定参数
#define debug(x, arg...)  printf((x), ##arg)
C99不定参数
#define debug(...)  printf( __VA_ARGS__)
posted on 2013-03-15 14:49 易道 阅读(399) 评论(0)  编辑 收藏 引用 所属分类: C/C++
只有注册用户登录后才能发表评论。