Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Portable way of splitting n-byte integer into single bytes

Where can I find the full syntax of C that is necessary to implement a compiler?

Why is array initialization with ternary operator illegal?

c arrays ternary-operator

Why use .data instead of reserving space in .bss and initializing at runtime, for variables in assembly/C?

c linux assembly memory x86

How to expose C struct size without exposing its type?

c

Is it safe to assume that atan2(0,0) returns 0?

python c atan2

Code compiled with ICC works with -O2, warning about strtok and a crash with -O1

c icc

Do pointers refer to physical or to virtual memories?

c pointers memory virtual

Can't solve: 'Redefinition of NULL macro'

c

Is it possible to generate CAN bus error using STM32?

c embedded stm32 can-bus

Behaviour of 2 inline functions calling each other in C

c gcc inline

In which versions of the C standard are variable length arrays not part of the language, required, or optional?

c

Are both of these volatile qualifier usages redundant?

AVX2 Transpose of a matrix represented by 8x __m256i registers

c x86 transpose simd avx2

Type checking arbitrary length array in ANSI C

c arrays string ansi-c

How to understand the syntax of two functions malloc() and calloc() exactly

How to use C library from Haskell?

c haskell interop ffi

Make variable have same type/effect as #define?

Nested macro calls

c macros c-preprocessor c99

How do pointers reference multi-byte variables?

c pointers memory-address