I usually write C code in C89, now some features of C99 (like intxx_t or __VA_ARGS__ or snprintf) are very useful, and can be even vital.
Before I more my requirements from ...
A response to a comment I made here made me stop and think: "I don't really know what the state of C99 support is."
Wikipedia gives details for a few compilers, but ...
I'm looking to write a small C compiler, and I can't seem to find the grammar for C99 anywhere. I've found the C90 and C99 standards document, but I can't find ...
Recently I have come across an article which mentioned that the result of !0 is compiler dependent. The result can be either 1 or FF or FFFF and so on.
As ...