Top "Standards-compliance" questions

How universally is C99 supported?

How universally is the C99 standard supported in today's compilers? I understand that not even GCC fully supports it. Is …

c c99 standards-compliance
What is going on with 'gets(stdin)' on the site coderbyte?

Coderbyte is an online coding challenge site (I found it just 2 minutes ago). The first C++ challenge you are greeted …

c++ input gets standards-compliance
Can a destructor be recursive?

Is this program well-defined, and if not, why exactly? #include <iostream> #include <new> struct X { int …

c++ destructor standards-compliance