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 read several questions in stackoverflow about inline in C but still am not clear about it. static inline void …
c inline c99There are tons of similar questions, but still I could not find any answer relevant for the feature of variable …
c arrays c99I have included the header netdb.h, where getaddrinfo is included, but gcc issues this warning: warning: Using 'getaddrinfo' in …
c gcc posix c99 static-linkingWhen I try to build this code inline void f() {} int main() { f(); } using the command line gcc -std=c99 …
c inline c99I'm working on a small C project in Eclipse; I just installed Eclipse from the Ubuntu Software Center and added …
eclipse gcc c99static struct fuse_oprations hello_oper = { .getattr = hello_getattr, .readdir = hello_readdir, .open = hello_open, .read = hello_read, }; I don't …
c c99 designated-initializer