Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c99

How to use ftruncate in c99 without warning

c c99

Why does clang complain about using variable-length arrays with '-std=c99' flag?

c clang c99 compiler-flags

Using-block in C

c c99

Which C99-compiler (Clang vs. GCC) is closer to standard on const structure fields?

c gcc constants clang c99

C99 - why are false and true defined as 0 and 1 and not as ((bool)0) and ((bool)1)?

c language-design c99 boolean

implicit declaration of function ‘str[n]casecmp’ [-Werror=implicit-function-declaration]

c gcc c99

Why do new C books not adhere to the C99 standard?

c c99

How to auto-vectorize strided writes with GCC?

C - unexpected behavior in complex.h on different OS

c clang c99

Why does __func__ return <unknown> in some functions in C?

c gcc c99 func

How to determine maximum required alignment in C99

c c99 memory-alignment

Undefined behavior with pointer arithmetic on dynamically allocated memory

c99 __restrict and compiler optimization

Distinguish between string and byte array?

c string gcc c99 buffer-overflow

Exception libraries for C (not C++)

c exception c99 throw raise

size limit of printf conversion specification

c printf c99 format-string

Can I inline a function partially/selectively?

c inline c99

Are there float and double types with fixed sizes in C99?

c floating-point c99

Strict aliasing in relation to aggregate or union types