c++ Programming Glossary: learnt
Debugging in XCode as root http://stackoverflow.com/questions/1033026/debugging-in-xcode-as-root
light-weight C++ image library http://stackoverflow.com/questions/11816571/light-weight-c-image-library dismissed yet but haven't looked at it much either just learnt of it a few minutes ago on a similar post on SO based on it's..
Memory leak in C,C++; forgot to do free,delete http://stackoverflow.com/questions/1232262/memory-leak-in-c-c-forgot-to-do-free-delete nice references. UPDATE 1 After reading some answers I learnt that memory is given back to OS system after program terminates.. leak free code less use of new delete more use of STL learnt new stuffs like RAII valgrind and good programming practices...
C: Good Habits re: Transitioning to C++ http://stackoverflow.com/questions/1420685/c-good-habits-re-transitioning-to-c is it best to think of them completely separately When you learnt C then C did the way you coded in C change in any way c c transition..
How to write good Unit Tests? http://stackoverflow.com/questions/1540960/how-to-write-good-unit-tests managing big software projects with ease. I like C a lot I learnt it on my own without any formal education. I never looked into..
Capturing video out of an OpenGL window in Windows http://stackoverflow.com/questions/154730/capturing-video-out-of-an-opengl-window-in-windows hand OpenGL is quite new for me so far I've really only learnt the necessary bits to actually get my job done. I don't need..
The best cross platform (portable) arbitrary precision math library http://stackoverflow.com/questions/2568446/the-best-cross-platform-portable-arbitrary-precision-math-library It may be based on theories algorithms that I have never learnt. The built in integer type or in core libraries of bc Python..
Returning object from function http://stackoverflow.com/questions/2616107/returning-object-from-function of a temporary when it's used to initialize a reference I learnt about it in this publication by Andrei Anexandrescu. Again it..
What are some C++ related idioms, misconceptions, and gotchas that you've learnt from experience? http://stackoverflow.com/questions/294018/what-are-some-c-related-idioms-misconceptions-and-gotchas-that-youve-learnt C related idioms misconceptions and gotchas that you've learnt from experience What are some C related idioms misconceptions.. C related idioms misconceptions and gotchas that you've learnt from experience An example class A public char s 1024 char p..
What are Aggregates and PODs and how/why are they special? http://stackoverflow.com/questions/4178175/what-are-aggregates-and-pods-and-how-why-are-they-special syntax is commonly known for arrays and we just learnt that these are aggregates. So let's start with them. Type array_name..
Does this type of memory get allocated on the heap or the stack? http://stackoverflow.com/questions/426737/does-this-type-of-memory-get-allocated-on-the-heap-or-the-stack matters class Foo private int x 100 public Foo What I've learnt tells me that if you create an instance of Foo like so Foo bar..
What are good practices regarding shared libraries on Linux? http://stackoverflow.com/questions/4757121/what-are-good-practices-regarding-shared-libraries-on-linux a lot about shared libraries on Linux and here is what I learnt A shared library should embed a soname including its major version..
When would you use an array rather than a vector/string? http://stackoverflow.com/questions/594522/when-would-you-use-an-array-rather-than-a-vector-string a vector string I'm a beginner C programmer and so I've learnt using arrays rather than vectors this seems to be the general..
Learning to work with audio in C++ http://stackoverflow.com/questions/711350/learning-to-work-with-audio-in-c anyone know of any good tutorials in this subject I've learnt the basics of DSP I just want to program it EDIT I use Windows...
How many of you are aware that its safe to delete a NULL pointer? [closed] http://stackoverflow.com/questions/724688/how-many-of-you-are-aware-that-its-safe-to-delete-a-null-pointer improve this question In the beginning I didn't know. I learnt this after reading C FAQ Do I need to check for NULL before..
Position of least significant bit that is set http://stackoverflow.com/questions/757059/position-of-least-significant-bit-that-is-set is evil. edit Thanks everyone for the ideas I've learnt a few other things too. Cool c c optimization bit twiddling..
How do compilers treat variable length arrays http://stackoverflow.com/questions/7627235/how-do-compilers-treat-variable-length-arrays iostream int main int n std cin n int a n From what I've learnt in C all the initializer values must be constant so that the..
Using C++ Boost's Graph Library http://stackoverflow.com/questions/8812466/using-c-boosts-graph-library same I suspect it's a bit easier on the eyes. I actually learnt to use boost graph from the book. The learning curve can feel..
|