美文网首页
C语言 宏定义 返回值

C语言 宏定义 返回值

作者: sz66cm | 来源:发表于2018-07-19 10:53 被阅读0次

    如题,我们如何使用一个宏定义,得到返回值。

    使用场景:

    #define CM() ({...})
    int main() {
      int a;
      a = CM():
    }

    参考内核代码示例:

    #define kthread_run(thread,data,namefmt, ...)

    相关文章

      网友评论

          本文标题:C语言 宏定义 返回值

          本文链接:https://www.haomeiwen.com/subject/ctnzpftx.html