C语言中的关键词都有哪些呢

来源:2-2 练习题

慕莱坞2287185

2018-07-27 14:55

就是不能用作标志词的

写回答 关注

5回答

  • 神不知鬼不觉
    2018-07-27 15:24:31
    已采纳

    ANSI标准定义的C语言关键字共32个 :
    auto double int struct break else long switch
    case enum register typedef char extern return union
    const float short unsigned continue for signed void
    default goto sizeof volatile do if while static

  • 王山而祥
    2019-04-30 00:43:22
    #include<stdio.h>
    int main()
    {
        prntf("慕课,你好,晚安,明天见\n”);
        teturn0;
    }


  • 王山而祥
    2019-04-30 00:41:55

    #include<stdio.h>

    int main()

    {

        prntf("慕课,你好,晚安,明天见\n”);

        teturn0;

    }

  • tingbai
    2018-07-27 15:39:05

    auto

    breakcasecharconstcontinue

    default

    do
    doubleelseenumextern

    float

    forgotoif
    intlongregisterreturnshortsignedsizeofstatic
    structswitchtypedefunionunsigned

    void

    volatile

    while

    1999年12月16日,ISO推出了C99标准,该标准新增了5个C语言关键字:

    inlinerestrict_Bool_Complex_Imaginary

    2011年12月8日,ISO发布C语言的新标准C11,该标准新增了7个C语言关键字:

    _Alignas_Alignof_Atomic_Static_assert_Noreturn_Thread_local_Generic


  • 固化剂
    2018-07-27 15:22:18
    auto double int struct break else long switch
      case enum register typedef char extern return union
      const float short unsigned continue for signed void
      default goto sizeof volatile do if while static

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926020 学习 · 20793 问题

查看课程

相似问题