| c++ Programming Glossary: clarificationIs there a way to access the underlying container of STL container adaptors? http://stackoverflow.com/questions/1185252/is-there-a-way-to-access-the-underlying-container-of-stl-container-adaptors  official documentation of the standard library Just for clarification I wasn't trying to mess up with the underlying container. All.. 
 What do the following phrases mean in C++: zero-, default- and value-initialization? http://stackoverflow.com/questions/1613341/what-do-the-following-phrases-mean-in-c-zero-default-and-value-initializat  I think it might be the only difference that's more than a clarification . See Kirill V. Lyadvinsky's answer for the definitions straight.. 
 c++ syntax: default and delete modifiers http://stackoverflow.com/questions/16770492/c-syntax-default-and-delete-modifiers  which is user defined. Another nice consequence is the clarification of implicitly generated things If you don't write certain functions.. 
 Elegant way to implement extensible factories in C++ http://stackoverflow.com/questions/17378961/elegant-way-to-implement-extensible-factories-in-c  if anyone knows of better approaches. EDIT it seems some clarification is in order... The idea is for the factory to construct an object.. 
 Is “const LPVOID” equivalent to “void * const”? http://stackoverflow.com/questions/1808471/is-const-lpvoid-equivalent-to-void-const  is LPCVOID and thus it is safe to add a cast Further clarification It appears that const LPVOID pBlock was indeed a mistake in.. 
 Is .NET “all COM underneath”? http://stackoverflow.com/questions/2280639/is-net-all-com-underneath  It's all COM underneath. Then after Carl Franklin asks for clarification on this comment Carl Franklin Yeah I get that. My question was.. 
 What are the rules about using an underscore in a C++ identifier? http://stackoverflow.com/questions/228783/what-are-the-rules-about-using-an-underscore-in-a-c-identifier  I think that is a POSIX standard not sure yet looking for clarification and official chapter and verse. This is from the GNU libtool.. 
 Declaring pointers; asterisk on the left or right of the space between the type and name? [duplicate] http://stackoverflow.com/questions/2660633/declaring-pointers-asterisk-on-the-left-or-right-of-the-space-between-the-type  question to search for. Thank you for your answers and clarification.  c c pointers   share improve this question   It's a matter.. 
 Why does C++ not allow inherited friendship? http://stackoverflow.com/questions/3561648/why-does-c-not-allow-inherited-friendship  found its way into a few obscure respectable uses Edit for clarification I'm talking about the following scenario not where children.. 
 Interview question - Search in sorted array X for index i such that X[i] = i http://stackoverflow.com/questions/4172580/interview-question-search-in-sorted-array-x-for-index-i-such-that-xi-i  that element at that index is also i . That is X i i . As clarification she also gave me an example Array X 3 1 0 3 5 7 index 0 1 2.. 
 Is floating-point == ever OK? http://stackoverflow.com/questions/4682889/is-floating-point-ever-ok  please give examples when it's fine UPDATE2 Actually one clarification. I'm not asking for when it COULD work but when it makes sense.. 
 g++: In what order should static and dynamic libraries be linked? http://stackoverflow.com/questions/492374/g-in-what-order-should-static-and-dynamic-libraries-be-linked  to UNIX Windows DLL work quite differently. Edit after clarification of the question Quote from the ld info manual. The linker will.. 
 Good tools for creating a C/C++ parser/analyzer http://stackoverflow.com/questions/526797/good-tools-for-creating-a-c-c-parser-analyzer  into a new toy language. Thanks Matt Added 2 9 Just a clarification I want to extract semantic information from the preprocessor.. 
 Some clarification needed about synchronous versus asynchronous asio operations http://stackoverflow.com/questions/5282659/some-clarification-needed-about-synchronous-versus-asynchronous-asio-operations  clarification needed about synchronous versus asynchronous asio operations.. 
 Testing pointers for validity (C/C++) http://stackoverflow.com/questions/551069/testing-pointers-for-validity-c-c  specific for Windows and Linux is also ok. Update for clarification The problem is not with stale freed uninitialized pointers instead.. pointers null   share improve this question   Update for clarification The problem is not with stale freed or uninitialized pointers.. 
 Why was std::pow(double, int) removed from C++11? http://stackoverflow.com/questions/5627030/why-was-stdpowdouble-int-removed-from-c11  double double overload should be picked. Is this just a clarification of the previous intention were they incorrectly added in C 98.. 
 C++ code in header files http://stackoverflow.com/questions/583255/c-code-in-header-files  with them. EDIT Some people would like a little more clarification here's some thoughts on the downsides to writing header only.. 
 WChars, Encodings, Standards and Portability http://stackoverflow.com/questions/6300804/wchars-encodings-standards-and-portability  the right way to go about things I would like to ask for clarification confirmation and corrections on my understanding of character.. 
 What are the distinctions between the various symbols (*,&, etc) combined with parameters? [duplicate] http://stackoverflow.com/questions/9636903/what-are-the-distinctions-between-the-various-symbols-etc-combined-with-p  know what pointers are. I wonder how that could be So for clarification I understand perfectly how pointers work. What I am not grasping.. 
 How to force std::stringstream operator >> to read an entire string? http://stackoverflow.com/questions/1136359/how-to-force-stdstringstream-operator-to-read-an-entire-string  tried setting unsetting stream flags but it didn't help. Clarification The class is a container template with automatic conversion.. 
 How is heap and stack memories managed, implemented, allocated? http://stackoverflow.com/questions/1212797/how-is-heap-and-stack-memories-managed-implemented-allocated  Can a function be allocated on the heap instead of a stack Clarification I am really asking about implementation and management of heap.. 
 How is heap and stack memories mananged, implemented, allocated [duplicate] http://stackoverflow.com/questions/1213265/how-is-heap-and-stack-memories-mananged-implemented-allocated  a function be allocated on the heap instead of a stock  Clarification I am really asking about implementation and management of heap.. 
 Piecewise conversion of an MFC app to Unicode/MBCS http://stackoverflow.com/questions/1322801/piecewise-conversion-of-an-mfc-app-to-unicode-mbcs  moment. Is it possible to do this piecewise and if so how Clarification I could use GetWindowTextW to get Unicode information out of.. 
 Why both runtime-sized arrays and std::dynarray in C++14? http://stackoverflow.com/questions/17353873/why-both-runtime-sized-arrays-and-stddynarray-in-c14  dynarray can be implemented with equal runtime efficiency Clarification When I talk about runtime sized arrays I'm referring to a new.. 
 Is there any way to determine the size of a C++ array programmatically? And if not, why? http://stackoverflow.com/questions/197839/is-there-any-way-to-determine-the-size-of-a-c-array-programmatically-and-if-n  in C . Again part of the question is why it doesn't exist. Clarification I know that if I declared the array on the stack instead of.. 
 How should C bitflag enumerations be translated into C++? http://stackoverflow.com/questions/199606/how-should-c-bitflag-enumerations-be-translated-into-c  mind is compute bound and has a reputation of being fast. Clarification I'm translating a large 300K C program into C so I'm looking.. 
 How many palindromes can be formed by selections of characters from a string? http://stackoverflow.com/questions/2033903/how-many-palindromes-can-be-formed-by-selections-of-characters-from-a-string  number of possibilities for the inner palindrome. EDIT Clarification when I say number of palindromes contained in a string this.. 
 C++0x rvalue references - lvalues-rvalue binding http://stackoverflow.com/questions/2749263/c0x-rvalue-references-lvalues-rvalue-binding  arguments that were rvalues would get directly bound. Clarification edit I realize this is virtually identical to accepting arguments.. 
 C++ arrays as function arguments http://stackoverflow.com/questions/2867783/c-arrays-as-function-arguments  That's a reason to use things like vector T instead of T . Clarification A function can take a reference or pointer to an array of a.. 
 Off-the-Shelf C++ Hex Dump Code http://stackoverflow.com/questions/29242/off-the-shelf-c-hex-dump-code  ideally I'd like the code to all be in a header file Edit Clarification I am looking for code that I can easily drop in to my own programs.. 
 What about the types int2, int3, float2, float3 etc http://stackoverflow.com/questions/4079451/what-about-the-types-int2-int3-float2-float3-etc  in a grid Any reasons why or why not to use them EDIT Clarification int2 means a pair of ints float3 means a triplet of floats... 
 Why was std::pow(double, int) removed from C++11? http://stackoverflow.com/questions/5627030/why-was-stdpowdouble-int-removed-from-c11  float int And this change was done for C compatibility. Clarification 26.8 cmath p11 says Moreover there shall be additional overloads.. 
 Performing equivalent of “Kill Process Tree” in c++ on windows http://stackoverflow.com/questions/604522/performing-equivalent-of-kill-process-tree-in-c-on-windows  Then you can call TerminateJobObject whenever you want. Clarification this is NOT what Task Manager does.  share improve this answer.. 
 Is Global Memory Initialized in C++ http://stackoverflow.com/questions/60653/is-global-memory-initialized-in-c  Global Memory Initialized in C  And if so how Second Clarification When a program starts up what is in the memory space which will.. 
 How to get the address of an overloaded member function? http://stackoverflow.com/questions/705854/how-to-get-the-address-of-an-overloaded-member-function  double const const required MemberFunctionType pointer C f Clarification The original question didn't contain that const . I did a wild.. 
 Forward declaring an enum in c++ http://stackoverflow.com/questions/71416/forward-declaring-an-enum-in-c  I can't understand why. Can anyone explain Many thanks. Clarification 2 I'm doing this as I have private methods in a class that take.. 
 Hoisting the dynamic type out of a loop (a.k.a. doing Java the C++ way) http://stackoverflow.com/questions/7451442/hoisting-the-dynamic-type-out-of-a-loop-a-k-a-doing-java-the-c-way  you to query the dynamic function pointer and store it. Clarification The main use case which I'm interested in is when the base class.. 
 Circular shift operations in C++ http://stackoverflow.com/questions/776508/circular-shift-operations-in-c  question   using the inline assembler __asm rol number 1 Clarification rol ror are the bitshift operators of the cpu. the one represents.. 
 What happens if I define a 0-size array in C/C++? http://stackoverflow.com/questions/9722632/what-happens-if-i-define-a-0-size-array-in-c-c  Program #include stdio.h int main int arr 0 return 0 Clarification I'm actually trying to figure out if zero length arrays initialised.. 
 |