Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in 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

Can a char array be used with any data type?

c arrays types c11

Equivalent of uintptr_t/intptr_t for pointers to functions?

c language-lawyer c99 c11

C11 _Generic usage

c generics macros default c11

What does "representable" mean in C11?

c language-lawyer c11

Does the C11 keyword '_Atomic' count as type qualifier or specifier if followed by a whitespace and a left parenthesis?

c syntax grammar atomic c11

c99 - error: unknown type name ‘pid_t’

c c99 pid c11

__func__ value difference between C and C++

c++ c c++11 c99 c11

Why doesn't C11 support lambda functions

c lambda c11

Forcing compiler to C99 standard

c gcc clang c99 c11

How do I use a binary prefix in accordance with C11?

Do non-observable atomics synchronize memory?

Is this behavior of clang standard compliant?

Pointer arithmetics and comparison within a structure