|
You are here |
solarianprogrammer.com | ||
| | | | |
www.bfilipek.com
|
|
| | | | | 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. | |
| | | | |
gcher.com
|
|
| | | | | As of 2019, C and C++ are the only programming languages that are supported by virtually any platforms on the market. For example both iOS and android support compiling C and C++ directly as part of their official IDEs. This is one of the reason why I decided to write my voxel editor Goxel in C99: I wanted to be able to run it on Linux, Mac, Windows, iOS, and now I am working on a Android port as well. | |
| | | | |
www.cppstories.com
|
|
| | | | | // 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. | |
| | | | |
isocpp.org
|
|
| | | |||