Top "Standards" questions

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

When a function has a specific-size array parameter, why is it replaced with a pointer?

Given the following program, #include <iostream> using namespace std; void foo( char a[100] ) { cout << "foo() " <&…

c++ arrays standards sizeof function-parameter
Is for(auto i : unordered_map) guaranteed to have the same order every time?

When I iterate over a std::unordered_map with the range based for loop twice, is the order guaranteed to …

c++ for-loop standards unordered-map
Where can I read C99 official language standard manual/reference/specification online?

Possible Duplicate: Where do I find the current C or C++ standard documents? Where can I read C99 official language …

c standards specifications
Is no parentheses on a constructor with no arguments a language standard?

I was compiling a C++ program in Cygwin using g++ and I had a class whose constructor had no arguments. …

c++ constructor standards
Computing length of a C string at compile time. Is this really a constexpr?

I'm trying to compute the length of a string literal at compile time. To do so I'm using following code: #…

c++ c++11 standards constexpr string-literals
If transactions over REST are unachievable, how can REST ever be really useful?

When looking into REST one of the first things probably anybody will notice is there isn't any transaction semantics defined, …

web-services rest transactions standards
ISO Standard Street Addresses?

Is there an ISO standard address format? I can't seem to find one, and I'd like to know for object- …

standards iso
How to put the WebBrowser control into IE9 into standards?

i am using automation (i.e. COM automation) to display some HTML in Internet Explorer (9): ie = CoInternetExplorer.Create; ie.Navigate2("…

com html automation standards internet-explorer-9
Does a dot have to be escaped in a character class (square brackets) of a regular expression?

A dot . in a regular expression matches any single character. In order for regex to match a dot, the dot …

regex standards standards-compliance square-bracket
Deprecation of the static keyword... no more?

In C++ it is possible to use the static keyword within a translation unit to affect the visibility of a …

c++ static c++11 standards