Explore >> Select a destination


You are here

www.cppstories.com
| | hashblog.thepolyglotprogrammer.com
3.7 parsecs away

Travel
| | On this post I intend to walk down memory lane a bit to understand what exactly are Smart Pointers? Where do they come from? And of course, how do they work
| | www.bfilipek.com
1.2 parsecs away

Travel
| | Let's put C++17 in practice! One of the good ways to do it is to take part in a coding challenge. So together with Jonathan Boccara from Fluent C++ we invite you to participate in "The Expressive C++17 coding challenge". The Expressive C++17 coding challenge Jonathan made a few contests on his blog (for example this one), and I thought it might be fun to do something similar for C++17.
| | eyakubovich.github.io
2.8 parsecs away

Travel
| | The guidance around function arguments and smart pointers is quite old, yet I still see it used incorrectly. In this post, we'll explore the guidance and the costs of not following the advice. C++ Core Guidelines make this point clear: F.7: For general use, take T* or T& arguments rather...
| | migocpp.wordpress.com
22.9 parsecs away

Travel
| The CUDA C/C++ platform allows different programming modes for invoking code on a GPU device. Probably the more familiar and definitely simpler way is writing a single .cu file which contains both the kernel function and the host wrapper with "<<< >>>" invocation syntax. The NVCC compiler would transparently embed compiled device code and all...