Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c11

Assignment operator sequencing in C11 expressions

Is there a way to use GCC __attribute__((noreturn)) and <stdnoreturn.h> sanely in a single translation unit?

c gcc clang c11

Does comma separators in type definition in C guarantee the order?

c c99 c11

C11 grammar ambiguity between _Atomic type specifier and qualifier

c grammar yacc c11

Why are typedef identifiers allowed to be declared multiple times?

c typedef c99 c11

Behavior of "comma" operator in sizeof() operator In C [duplicate]

c arrays sizeof comma c11

How to use noreturn with function pointer?

c c11 noreturn

Why can I use gets() in gcc -std=c11?

c gcc language-lawyer c11 gets

M_PI not available with gcc --std=c11 but with --std=gnu11?

c gcc c11

Sequence points and side effects: Quiet change in C11?

Compatibility of C89/C90, C99 and C11

c c99 iso c11 c89

error: use of undeclared identifier 'errno_t'

c clang c11 errno tr24731

Is (uint64_t)-1 guaranteed to yield 0xffffffffffffffff?

c++ c standards c11

Parameters declared restrict and compiler warnings

Memory position of elements in C/C++ union

c++ c c++11 unions c11

Why didn't gcc (or glibc) implement _s functions?

c security gcc c11 tr24731

What is C11 cor 1:2012?

c standards c11

C1x: When will it land, what to expect?

c language-features c11

Bit-fields and sequence points

Branchless conditionals on integers — fast, but can they be made faster?