Explore >> Select a destination


You are here

www.bfilipek.com
| | cppstories.com
7.0 parsecs away

Travel
| | Maybe I'll be boring with this note, but again I need to write that this was another good year for C++! Here's a bunch of facts: Visual Studio 2015 was released with great support for C++14/17 and even more experimental features. Long-awaited GCC 5.0 was released at the beginning of the year.
| | cppstories.com
6.9 parsecs away

Travel
| | Include Guards, Pragma Once, Predeclarations and other hints that might be useful when dealing with includes. What can we do with file including in C++? Do we need to put all the other header files of the project (plus third party libraries) in every file all the time? For sure there have to be some rules to manage that issue properly.
| | brevzin.github.io
12.3 parsecs away

Travel
| | Setting the Stage
| | migocpp.wordpress.com
114.0 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...