Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c99

C99: Flexible array inside union?

Is it safe to cast a heap allocated pointer to a pointer to a VLA?

Why in C language for every signed int type must there be a corresponding unsigned int type?

c c99 unsigned signed stdint

Explanation of tentative definitions in C [duplicate]

c c99

What does section 5.1.2.3, paragraph 4 (in n1570.pdf) mean for null operations?

Threading and Thread Safety in C

What is the state of C99 support in major compilers / toolchains?

variable length array declaration not allowed in OpenCL - why?

Is unsigned char always promoted to int?

Is it safe to pass a va_list to another function without using va_copy?

C99: cast callbacks with different number of arguments

c function pointers casting c99

Equivalent of uintptr_t/intptr_t for pointers to functions?

c language-lawyer c99 c11

It is possible to mix C89 code with C99 code?

c c99 c89

Equivalent of std::aligned_storage<> in C?

c++ c alignment c99

Function overloading in C using GCC - compiler warnings

Struct vs string literals? Read only vs read-write? [duplicate]

What does (int (*)[])var1 stand for?

numpy.nextafter decrementing instead of incrementing

python numpy posix c99

Initialise all elements in an array with a value using compound literals

c arrays gcc c99 gcc4

Can a C compiler change bit representation when casting signed to unsigned?

c c99 language-lawyer