C11 is the informal name of an older standard version (ISO/IEC 9899:2011) of the C programming language.
I'm trying to fix an undefined reference to memcpy_s() error. I've included string.h in my file and the …
c memcpy undefined-reference c11 tr24731I noticed M_PI is unavailable on c11. By looking at /usr/include/math.h I can see M_PI …
c gcc c11I was wondering if there are any compilers that support a considerable amount of the new C11 standard. Looking for …
c compiler-construction c11I read this question about noreturn attribute, which is used for functions that don't return to the caller. Then I …
c assembly c11 function-call noreturnI have a small piece of code about the sizeof operator with the ternary operator: #include <stdio.h> #…
c boolean sizeof conditional-operator c11C11 and C++11 both introduce the uchar.h/cuchar header defining char16_t and char32_t as explicitly 16 and 32 bit …
c++11 unicode utf-8 character-encoding c11I am currently starting out with programming micro controllers using C30 (A C compiler based on GCC from microchip for …
c compiler-construction standards standards-compliance c11C11 supports anonymous structures, like so: struct Foo { struct { size_t x, y; }; }; struct Foo f; f.x = 17; f.y = 42; …
c++ c c++11 anonymous-types c11While answering this question I compiled the code on Ideone and got this error implicit declaration of function ‘scanf_s’ […
c header-files c11 tr24731 implicit-declaration