Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c11

What is the __STDC_VERSION__ value for C11?

c macros iso c11

Understanding the C11 type hierarchy

Latest changes in C11

c standards c11

difference between c99 and c11 [closed]

c c99 c11

How to enable c11 on later versions of gcc?

c gcc c11

Why does C++11 not support anonymous structs, while C11 does?

c++ c c++11 anonymous-types c11

Are there any plans for a future C standard after C11?

c iso c11

Does &((struct name *)NULL -> b) cause undefined behaviour in C11?

c language-lawyer c11 offsetof

Does any C library implement C11 threads for GNU/Linux?

c multithreading c11

When are anonymous structs and unions useful in C11?

c struct c11

Is type-punning through a union unspecified in C99, and has it become specified in C11?

c c99 unions c11 type-punning

What is the default C -std standard version for the current GCC (especially on Ubuntu)?

c ubuntu gcc c99 c11

Multi-Threading support in c11

c multithreading c11

Syntax and Sample Usage of _Generic in C11

c generics c11

What is C17 and what changes have been made to the language?

c gcc iso c11 c17

Why does "noreturn" function return?

Printing null pointers with %p is undefined behavior?

Why does auto a=1; compile in C?

c auto c11

Why does "sizeof(a ? true : false)" give an output of four bytes?

Can volatile variables be read multiple times between sequence points?

c language-lawyer volatile c11