Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c99

Are all of the features of C99 also in C++?

c++ c c99 c89

What are "extended integer types"?

c gcc c99

Is returning va_list safe in C?

c c99 c89 variadic-functions

Why are compound literals in C modifiable

C - Implementing fast push of many elements to the end of array

c arrays optimization c99

"int" really required to be at least as large as "short" in C?

c standards c99 c89

Is it possible to instruct C to not zero-initialize global arrays?

c gcc embedded c99

Can "sizeof(arr[0])" lead to undefined behavior?

How enable c99 mode in gcc with terminal

c gcc c99

What can human beings make out of the restrict qualifier?

Bit-fields and sequence points

Understanding restrict qualifier by examples

Why can't I "goto default;" or "goto case x;" within a switch selection structure?

c c99 c89 c11

Free static checker for C99 code

Is it legal and well defined behavior to use a union for conversion between two structs with a common initial sequence (see example)?

c++ c c99 unions c89

Will "&a+1 > &a" cause an undefined behaviour

c++ c c99 c++03

Why weren't new (bit width specific) printf() format option strings adoped as part of C99?

Is C99 backward compatible with C89?

c c99

Valid programs in C89, but not in C99

c language-lawyer c99 c89

Optimizing linear access to arrays with pre-fetching and cache in C

c performance memory c99