Versions

C++

  • Verify the default C version, if you don't specify during compilation:

    • Windows: cmd /c "clang -dM -E - < nul | findstr __STDC_VERSION__"

      • (2026-04-01) The default is C17.

  • Versions .

C

C89/C90

  • Original ANSI/ISO C standard.

C99

  • Added inline , //  comments, variable-length arrays, and more standard headers.

C11

  • Introduced multithreading ( <threads.h> ), _Atomic , and optional bounds checking.

  • C11 .

C17

  • Bug-fix revision of C11, no major new features.

C23

  • Adds UTF-8 literals, improved enums, and more modern conveniences.