c++ Programming Glossary: debate
In which versions of the C++ standard does “(i+=10)+=10” have undefined behaviour? http://stackoverflow.com/questions/10655290/in-which-versions-of-the-c-standard-does-i-10-10-have-undefined-behaviou have undefined behaviour int i 0 i 10 10 There was some debate about this in the comments to my answer to What's the result..
What is the difference between a definition and a declaration? http://stackoverflow.com/questions/1410563/what-is-the-difference-between-a-definition-and-a-declaration to and complains about duplicated symbols. Since the debate what is a class declaration vs. a class definition in C keeps..
C++ Which is faster: Stack allocation or Heap allocation http://stackoverflow.com/questions/161053/c-which-is-faster-stack-allocation-or-heap-allocation This question may sound fairly elementary but this is a debate I had with another developer I work with. I was taking care..
What should main() return in C and C++? http://stackoverflow.com/questions/204476/what-should-main-return-in-c-and-c Whether return 0 should be omitted or not is open to debate. The range of valid C program main signatures is much greater...
Embedded C++ : to use STL or not? http://stackoverflow.com/questions/2226252/embedded-c-to-use-stl-or-not bit I cannot predict which. I have read quite a bit about debate about using STL in C in embedded systems and there is no clear.. handling maybe some other code now We have a similar debate in the game world and people come down on both sides. Regarding..
Loading a dll from a dll? http://stackoverflow.com/questions/2674736/loading-a-dll-from-a-dll dll hell share improve this question After all the debate that went on in the comments I think that it's better to summarize..
C++ preprocessor #define-ing a keyword. Is it standards conforming? http://stackoverflow.com/questions/2726204/c-preprocessor-define-ing-a-keyword-is-it-standards-conforming ing a keyword. Is it standards conforming Help settle the debate that's going on in the comments at this question about bool..
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 I'll admit I remember it being the subject of intense debate some years ago on comp.lang.c .moderated. share improve this..
Performance of C++ vs Virtual Machine languages in high frequency finance http://stackoverflow.com/questions/3175072/performance-of-c-vs-virtual-machine-languages-in-high-frequency-finance is a bit different than dealing with keystrokes. Even the debate about FPGA's goes on. Many people take the position that a well..
Is it acceptable not to deallocate memory http://stackoverflow.com/questions/496487/is-it-acceptable-not-to-deallocate-memory of choice is C for several reasons I'm not willing to debate. The computation phase will be highly symbolic think compiler..
Is it legal to use the increment operator in a C++ function call? http://stackoverflow.com/questions/598148/is-it-legal-to-use-the-increment-operator-in-a-c-function-call increment operator in a C function call There's been some debate going on in this question about whether the following code is.. to work with a particular compiler. One side of the debate says that all function arguments are fully evaluated before.. dependent. I opened this question to hopefully settle that debate. c function standards share improve this question Quoth..
Throwing exceptions from constructors http://stackoverflow.com/questions/810839/throwing-exceptions-from-constructors exceptions from constructors Im having a debate with a co worker about throwing exceptions from constructors..
Is there any reason to use C instead of C++ for embedded development? http://stackoverflow.com/questions/812717/is-there-any-reason-to-use-c-instead-of-c-for-embedded-development worth a look. EDIT See also this question which led to a debate about C vs C for embedded systems. share improve this answer..
Memcached on Windows (x64) http://stackoverflow.com/questions/8896/memcached-on-windows-x64 or hopfully 2008. I know that this could spill over into a debate regarding 32bit vs 64bit on servers but let's just say that..
Is not calling delete on a dynamically allocated object always a memory leak? http://stackoverflow.com/questions/9921590/is-not-calling-delete-on-a-dynamically-allocated-object-always-a-memory-leak and it wasn't very helpful. EDIT I don't want to start a debate I think that... is not the kind of answer I'm looking for. I'm..
|