Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in 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

Is implicit function declaration legal in C89?

c language-lawyer c89

C90: How do I globally initialize this struct in C without C99 extensions

c struct global declare c89

C How extract predefined huge switch from huge loop without loss performance?

c x86 arm c89

Factory pattern implementation using ANSI C

c design-patterns factory c89

warning: ISO C90 forbids mixing declarations and code [-Wdeclaration-after-statement] [duplicate]

c c89

Implementing a FIFO queue in C

c struct fifo c89

Was `long` guaranteed to be as wide as `size_t`

c language-lawyer c89

Is it legal to cast a function returning an object pointer to a function returning a void pointer?

How can I figure out what is the default standard used by my C compiler GCC ? [duplicate]

c gcc c99 c11 c89

Why do you get different values for integer division in C89?

c c89

the size of dynamically allocated array in C [duplicate]

c arrays sizeof ansi c89

Is negating INT_MIN undefined behaviour?

c c99 undefined-behavior c89

Object oriented programming in C [duplicate]

c oop c89

Would it be safe to do swap by "b=(a+b)-(a=b);"?

c c99 c89

Cast a long to a function pointer?

c function-pointers c89