Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Problem trying to use the C qsort function

c c89 qsort

Is omitting return statement undefined behaviour in C89 (aka ANSI C)?

c language-lawyer c89

What C program behaves differently in run-time when compiled with C89 and C99?

c language-lawyer c99 c89

ANSI C (ISO C90): Can scanf read/accept an unsigned char?

c gcc scanf c89

How to rewrite C-struct designated initializers to C89 (resp MSVC C compiler)

Are all of the features of C99 also in C++?

c++ c c99 c89

Does ANSI-C not know the inline keyword?

c inline c89

Is returning va_list safe in C?

c c99 c89 variadic-functions