Top "Standards" questions

Standards are officially published or well agreed upon formats, procedures, or protocols.

Why the sizeof(bool) is not defined to be one, by the Standard itself?

Size of char, signed char and unsigned char is defined to be 1 byte, by the C++ Standard itself. I'm wondering …

c++ boolean standards sizeof
Why can't I have a numeric value as the ID of an element?

Working on a project, nearly finished and just tidying up the HTML and I find out that you're not really …

html standards web-standards
IE9 letter-spacing problem

I have a page that renders ok, in FF (3x, 4x), Chrome, IE (6, 7, 8). When tested on IE9 the texts are …

css standards render internet-explorer-9 letter-spacing
What should happen to template class static member variables with definition in the .h file

If a template class definition contains a static member variable that depends on the template type, I'm unsure of what …

c++ templates static member standards
How many versions of the C++ Standards are there?

In C there's C89, C99, and C11; what about C++? Is there any upgrade since it came out?

c++ standards c++-faq
Should I learn XML 1.0 or XML 1.1?

I know that a well-formed XML 1.1 is not necessarily a well-formed XML 1.0 and vice-versa. I want to learn xml formally …

xml standards standards-compliance xml-1.1
Normalizing Human Skin Colors for User Interaction

A while ago I came across this answer that introduced me to the obscure (at least for me) ISO 5218: a …

database user-interface schema standards iso
What size should I allow for strerror_r?

The OpenGroup POSIX.1-2001 defines strerror_r, as does The Linux Standard Base Core Specification 3.1. But I can find no …

c linux standards posix glibc
Is there a way to make an enum unsigned in the C90 standard? (MISRA-C 2004 compliant)

I'm trying to find a way to make an enum "unsigned". enum{ x1 = 0, x2, x3 }; uint8_t = x2; /* <--- …

c enums standards misra
An alternative to reading input from Java's System.in

I’m working on the UVa Online Judge problem set archive as a way to practice Java, and as a …

java input standards system.in