Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c89

C89 vs c99 GCC compiler

A way to convert byte stream to packet stream in C89 on an embedded device [closed]

c embedded communication c89

How to "simulate" C99 in Visual Studio for variables declaration

c visual-studio-2012 c99 c89

The meaning of "EiC"

c++ c interpreter c89

How can I get error message for errno value (C language)?

c c89

Workaround for "semicolon in global scope" warning for no-op C macro

c c89 static-assert

Which section in C89 standard allows the "implicit int" rule?

Why does this function return the correct length of a string? (Incrementing a char pointer)

c while-loop strlen c89

Should I use "-ansi" or explicit "-std=..." as compiler flags?

c c89 compiler-flags ansi-c

Is it undefined behavior to exceed translation limits and are there checker tools to find it?

Is casting a pointer to different structs guaranteed to be meaningful in C89?

c struct c89

C - Why did ANSI only specify six characters for the minimum number of significant characters in an external identifier?

linker standards c89

Are there any differences between ANSI C and ISO C?

c standards c99 c89 ansi-c

How to enforce C89-style variable declarations in gcc?

c visual-c++ gcc c99 c89

Is the %zu specifier required for printf?

c printf c89 size-t c-libraries

GCC options for strict C90 code?

c gcc iso c89

Compatibility of C89/C90, C99 and C11

c c99 iso c11 c89

Inconsistent behaviour of implicit conversion between unsigned and bigger signed types

C check if file exists

c c89

Should I place the parameter storage class specifier in the function definition or in both the declaration and definition?

c declaration definition c89