What is C17 and what changes have been made to the language?

Viewed 35498

As I was checking news about GCC 8, I saw that they added support for the 2017 version of the C language (not C++17, really C17). But I can't find any information about it on Internet.

Is it a new ISO version like C11, or just a codename used by the GCC team for some corrections in their compiler ?

2 Answers

C17 is a “bugfix release” of the C standard how "M.S Chaudhari" noticed. However, there is very useful information prepared by Jens Gustedt the author of "Modern C" book.


He identified the following list of changes in C17 compared to C11:

Link to the main page C17.


Also, this content will be updated by Jens you can follow to update here Jeans Gustedt Blog.

P.S: before posting all this stuff I received approval from the author.

Related