Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c99

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

What is the equivalent Haskell type for C99 bool when using FFI?

haskell c99 ffi

Get warning when a variable is shadowed

c variables warnings c99

Why can't gcc find the random() interface when -std=c99 is set?

c gcc random c99 c89

Allocating char array using malloc

c char malloc sizeof c99

Kernel's "container_of" - any way to make it ISO conforming?

Reasons not to use _Bool in Objective-C?

objective-c c99 boolean

Lifetime of temporary objects in C11 vs C99

c c99 c11

Why do some C standard headers begin with 'std' while others don't?

c c99 c89 c11

Forward declaration of inline functions

Declaring an array of negative length

c arrays gcc c99

Does C99 guarantee that arrays are contiguous?

c arrays pointers c99

Is it a good idea to use C99 VLA compared to malloc/free?

c c99

Does either ANSI C or ISO C specify what -5 % 10 should be?

c c99 modulo c89