|
You are here |
blog.jetbrains.com | ||
| | | | |
accu.org
|
|
| | | | | What is C++ and why do people still use it? Bjarne Stroustrup provides a short note answering these questions. | |
| | | | |
www.bfilipek.com
|
|
| | | | | To write a professional C++ application, you not only need a basic text editor and a compiler. You require some more tooling. In this blog post, you'll see a broad list of tools that make C++ programming possible: compilers, IDEs, debuggers and other. Last Update: 14th October 2019. Note: This is a blog post based on the White Paper created by Embarcadero, see the full paper here: C++ Ecosystem White Paper. | |
| | | | |
cppstories.com
|
|
| | | | | 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
|
|
| | | Recently, I've found somethinginterestingin Visual Studio that improved my Logger! I had a function called AddMsg /** appends message to the log file */ void AddMsg(LOG_MODE m, int level, char* strModule, char *strMsg, ...); But, when you wanted to add a comment you needed to use quite complicated and long syntnax, like: | ||