Top "C11" questions

C11 is the informal name of an older standard version (ISO/IEC 9899:2011) of the C programming language.

Compatibility of C89/C90, C99 and C11

I just read: C Wikipedia entry. As far as I know there are 3 different versions of C that are widely …

c c99 iso c11 c89
Is type-punning through a union unspecified in C99, and has it become specified in C11?

A number of answers for the Stack Overflow question Getting the IEEE Single-precision bits for a float suggest using a …

c c99 unions c11 type-punning
initialization of anonymous structures or unions in C1X

I have the following question: How are anonymous structures (or unions) properly initialized according to the current C1X draft? …

c standards anonymous structure c11
std::isfinite on MSVC

The C++11 and C11 standard define the std::isfinite function. Visual Studio 2012 doesn't seem to provide it as part of …

visual-c++ c++11 visual-studio-2012 c11 cmath
Use of _Noreturn in C11

Possible Duplicate: What is the point of the Noreturn attribute? C11 introduced the _Noreturn attribute to indicate that a function …

c c11
Generics for multiparameter C functions in C11

I understand C11 generics for one-parameter functions, like this: (from here) #define acos(X) _Generic((X), \ long double complex: cacosl, \ …

c c11