c++ Programming Glossary: comp.lang.c
What is the difference between NULL, '\0' and 0 http://stackoverflow.com/questions/1296843/what-is-the-difference-between-null-0-and-0 as a null character. . References See Question 5.3 of the comp.lang.c FAQ for more. See this pdf for the C standard. Check out sections..
friend class with limited access http://stackoverflow.com/questions/1609472/friend-class-with-limited-access question It depends on what you mean by a nice way At comp.lang.c .moderated we had the same question a while ago. You may see..
Why does std::map operator[] create an object if the key doesn't exist? http://stackoverflow.com/questions/1639544/why-does-stdmap-operator-create-an-object-if-the-key-doesnt-exist I'm pretty sure I already saw this question somewhere comp.lang.c Google doesn't seem to find it there either but a quick search..
What is the name of this operator: “-->”? http://stackoverflow.com/questions/1642028/what-is-the-name-of-this-operator After reading Hidden Features and Dark Corners of C STL on comp.lang.c .moderated I was completely surprised that it compiled and worked..
Inclusion of unused symbols in object files by compiler in C vs C++ http://stackoverflow.com/questions/1987413/inclusion-of-unused-symbols-in-object-files-by-compiler-in-c-vs-c C may have different rules. Edit As per this thread on comp.lang.c C does not have tentative definitions . The reason being This..
Explicit Type Conversion and Multiple Simple Type Specifiers http://stackoverflow.com/questions/2144012/explicit-type-conversion-and-multiple-simple-type-specifiers share improve this question I posted this question to comp.lang.c .moderated . Daniel Krügler of the C standards committee agreed..
“Inherited” types using CRTP and typedef http://stackoverflow.com/questions/2748969/inherited-types-using-crtp-and-typedef is still an incomplete type. There are similar threads on comp.lang.c .moderated and comp.lang.c . Note that it works if you delay.. There are similar threads on comp.lang.c .moderated and comp.lang.c . Note that it works if you delay the use by moving it into..
Who architected / designed C++'s IOStreams, and would it still be considered well-designed by today's standards? http://stackoverflow.com/questions/2753060/who-architected-designed-cs-iostreams-and-would-it-still-be-considered-wel
Why is std::numeric_limits<T>::max() a function? http://stackoverflow.com/questions/2766272/why-is-stdnumeric-limitstmax-a-function floating points number and if you dig through the comp.lang.c thread you'll see the mention that it might not be possible..
Why does std::basic_ios overload the unary logical negation operator? http://stackoverflow.com/questions/3222131/why-does-stdbasic-ios-overload-the-unary-logical-negation-operator that std basic_ios operator is defined A question on comp.lang.c .moderated didn't bring any answers either. c share improve..
GCC std::thread not found in namespace std http://stackoverflow.com/questions/3414834/gcc-stdthread-not-found-in-namespace-std Perhaps MinGW has the same problem. Also this thread on comp.lang.c .moderated says the same thing. Not supported by the library...
Passing non-const references to rvalues in C++ http://stackoverflow.com/questions/4084053/passing-non-const-references-to-rvalues-in-c the rationale goes something like this sourced from this comp.lang.c .moderated thread Suppose you have void inc long x x void test..
Is this rule about volatile usage strict? http://stackoverflow.com/questions/4168735/is-this-rule-about-volatile-usage-strict I remember the endless discussions that then followed on comp.lang.c .moderated. IIRC Andrei hijacks the volatile keyword to use..
Undefined Behavior and Sequence Points http://stackoverflow.com/questions/4176328/undefined-behavior-and-sequence-points An alternation definition of seq points given by the comp.lang.c author Steve Summit Sequence point is a point in time at which..
How to overcome pointless C++ compiler warnings elegantly? http://stackoverflow.com/questions/8133615/how-to-overcome-pointless-c-compiler-warnings-elegantly
What is the difference between char a[] = “string”; and char *p = “string”; http://stackoverflow.com/questions/9460260/what-is-the-difference-between-char-a-string-and-char-p-string
|