Explore >> Select a destination


You are here

solarianprogrammer.com
| | www.bfilipek.com
4.1 parsecs away

Travel
| | What do you do when the code for a variable initialization is complicated? Do you move it to another method or write inside the current scope? In this blog post, I'd like to present a trick that allows computing a value for a variable, even a const variable, with a compact notation.
| | www.cppstories.com
1.5 parsecs away

Travel
| | // how does it work? auto i = 0; // ?? C++11 brings us a very useful set of tools. It adds fresh air to the hard life of a programmer. The updated syntax makes the language a more modern and easier to use. In this post let's take a quick look at a nice keyword 'auto' that, at first sight might seem very simple.
| | macoy.me
3.0 parsecs away

Travel
| |
| | www.fluentcpp.com
27.2 parsecs away

Travel
| Do you know how to partially specialize all the kinds of templates in C++? Check out this post for how to do it while keeping your code clear.