Badge
| Good Answer | Answer score of 25 or more. This badge can be awarded multiple times. |
Matthieu M. earned this badge 19 times |
apr 25 at 10:00
When Should I Really Use `noexcept`?
apr 16 at 21:51
Remove last character from C++ string
mar 26 at 5:14
Singleton pattern in C++
dec 23 at 19:07
Clang vs GCC for Linux Development: Compare and Contrast
dec 13 at 19:18
So can unique_ptr be used safely in stl collections?
nov 2 at 3:02
Easiest way to convert int to string in C++
sep 25 at 0:42
power of an integer in c++
aug 13 at 11:17
ptrdiff_t too small?
may 5 '12 at 11:56
Why do C++ libraries and frameworks never use smart pointers?
mar 8 '12 at 0:04
Is inline assembly language slower than native C++ code?
feb 22 '12 at 20:22
Is it a good practice to always use smart pointers?
dec 9 '11 at 15:07
(post deleted or otherwise unavailable)
nov 3 '11 at 17:50
“static const” vs “#define” in C
oct 21 '11 at 16:18
Why use non-member begin and end functions in C++11?
jun 30 '11 at 12:06
How can I reliably get the address of an object?
jun 13 '11 at 17:01
Why doesn't C++ have a garbage collector?
jan 27 '11 at 16:48
How can I know which parts in the code are never used?
jan 7 '11 at 13:29
Which one will execute faster, if (flag==0) or if (0==flag)?