Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c89

Why is using an identifier not in scope UB and not an error

call by reference, const correctness and read write access to referenced structures - Undefined Behavior

Passing structs by pointer in C89

c c89

Integer representation(s) of NULL constant: Guaranteed to be unique?

c pointers null c89

Is there an `alignof` implementation portable to standard C89 and C99?

coding style aginst warning check

c while-loop c99 c89

Two types in the same dynamic allocation

c malloc memory-alignment c89

ANSI C: If a function pointer points to executable code does that mean less execution overhead than simply invoking the function? [duplicate]

Building a C iterator macro with a pre-C99 compiler

c c-preprocessor c89

Why does GCC C89/C90 ANSI C use __STDC_VERSION__ in Eclipse?

c eclipse-cdt c89 ansi-c

strtol using errno

c c89

Why does gcc -ansi remove the declarations of cosf and the like?

c gcc c99 c89

How can I avoid repeating myself in C89 when defining the same function for multiple types?

c c89

Format strings safely when vsnprintf is not available

c printf c89

Main with single argument

c c89

Size of anonymous struct standard conformant?

c c99 c89 ansi-c

Why register array names can be assigned to pointer variables without compiler error?

Is converting from unsigned char to signed char and vice versa in C89 well defined?

c undefined-behavior c89

The Linux Kernel container_of macro and generic containers in C90

use pointer to single value as Array

c arrays pointers c99 c89