Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c11

Why is there no 'aligned_realloc' on most platforms?

What is the rationale for one past the last element of an array object?

c c11

S_IFMT and S_IFREG undefined with -std=c11 or -std=gnu11

c gcc posix stat c11

Is it possible to include a C header using C11 atomics without modification in C++?

c++ c atomic c11

How to detect if a compiler supports static_assert?

Is support of Annex K in C11 required for a conforming implementation?

c language-lawyer c11 tr24731

Do I need -pedantic flag from GCC with C11?

c gcc c11

Potential problem with C standard malloc'ing chars

c malloc standards sizeof c11

Xcode and C11 stdatomic.h

c xcode llvm-clang c11 stdatomic

Is "reformat" of multi-dimensional array by pointer to incomplete array type allowed in C?

c c11

Why is this call to a pure function with a string literal argument not optimized to a constant value?

C11 & C++11 Exended and Universal Character Escaping

c++ c c++11 language-lawyer c11

Does C standard's FE_TONEAREST rounding mode guarantee that halfway ties are rounded to even?

_Generic to fill some union

c c11

Atomic decrement-and-test in C

c atomic c11 stdatomic

What does section 5.1.2.3, paragraph 4 (in n1570.pdf) mean for null operations?

If sizeof(int) == sizeof(long), then is INT_MIN == LONG_MIN && INT_MAX == LONG_MAX always true?

c integer range sizeof c11

Is this a valid definition for main()

Is it possible to implement GNU C's typeof(x) with C11's _Generic?

c generics gcc gnu c11