This tag is for questions regarding the International Standard ISO 9899:1999, aka "C99", with technical corrigenda, and for questions about code written in C99 (as opposed to K&R C, C89 or later C Standard revisions like the 2011 revision C11).
I am learning c, presently. The book I read is C99 based. I want to update my knowledge to C11 …
c c99 c11I'm working on a Linux machine. Is there any system command to find the standard followed by the C compiler …
c compiler-construction c99 c89I defined my function in .c (without header declaration) as here: inline int func(int i) { return i+1; } Then in …
c c99Consider this (horrible, terrible, no good, very bad) code structure: #define foo(x) // commented out debugging code // Misformatted to not …
c comments c-preprocessor c99Is there a difference if I compile the following program using c89 vs c99? I get the same output. Is …
c gcc compiler-construction c99 c89I, and I think many others, have had great success using smart pointers to wrap up unsafe memory operations in …
c memory pointers c99 smart-pointers