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).
In C99, I include stdint.h and that gives me UINT32_MAX as well as uint32_t data type. However, …
c++ types c99I keep reading about C99 and C++11 and all these totally sweet things that are getting added to the language …
c++ visual-studio visual-c++ c++11 c99Consider: struct Person { int height; int weight; int age; }; int main() { Person p { .age = 18 }; } The code above is legal in …
c++ c c++11 initialization c99I got the following error message while compiling the C code: error: 'for' loop initial declarations are only allowed in …
c c99I was wondering if it is possible to iterate over arguments passed to a variadic macro in C99 or using …
c foreach c99 c-preprocessor variadicI am currently using Xcode 4, and in my .pch file I have this macro: #define localize(s) NSLocalizedString((s), nil). …
objective-c xcode macros c99 pchI was browsing through some documentation and questions/answers and saw it mentioned. I read a brief description, stating that …
c gcc c99 restrict-qualifier