Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c99

What is the use of ignoring `SIGCHLD` signal with `sigaction(2)`?

c linux process signals c99

How many memory pages do C compilers on desktop OSes use to detect stack overflows?

C - return array of unknown size

c arrays c99

Allocating struct with flexible array member

c c99 flexible-array-member

How to use compound literals to `fprintf()` multiple formatted numbers with arbitrary bases?

const array const {}

c constants c99

Can I define variadic C preprocessor macros with __VA_ARGS in the middle instead of the end?

Are zero-length variable length arrays allowed/well defined?

c c99

Calculating and using maximum value of uint32_t

c gcc c99

Is a compiler allowed to add functions to standard headers?

c header c99 standards

Returning a variable while using a post increment in C

Variable Length Arrays in C++14?

why is sizeof(ptrdiff_t) == sizeof(uintptr_t)

What techniques/strategies do people use for building objects in C (not C++)?

c inheritance object c99 c89

Why is SCHAR_MIN defined as -127 in C99?

c char language-lawyer c99

Why isn't regular expressions part of ISO C99

c regex standards c99

Is there a reason that C99 doesn't support function overloading?

c c99 overloading

Why must I use gnu99 instead of c99 to compile a kernel module?

Variable Length Array

c c99

C99: what is the recomended way to handle exceptions raised by `pow()` (overflow or complex number)

c exception nan c99 pow