Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c17

Bitwise & over 32 bits

c bitwise-and c17

Why open-std.org still lists C11 as the latest version of C?

c standards c11 c17

Why converting 'out of range integer to integer' leads to IB, but converting 'out of range floating-point to integer' leads to UB?

Strict Aliasing and Unions in C

If the next representable value after -0.0 is +0.0, then why nextafter(-0.0, INFINITY) does not return +0.0?

c floating-point c11 math.h c17

Is jumping to the beginning of the block equivalent to "entering the block"?

Does the definition int a = 0, b = a++, c = a++; have defined behavior in C?

Why not all the standard headers are preceded with std prefix?

c language-lawyer naming c11 c17

Is indexing a string literal an initializer constant expression?

How does C17 want me to initialize my atomics?

c atomic c17

Will i=i++ be newly well-defined in C17?

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

c gcc iso c11 c17

What is the difference between an enumeration constant and an enumerator?

c enums scope enumeration c17