C++ is a general-purpose programming language. It was originally designed as an extension to C, and keeps a similar syntax, but is now a completely different language. Use this tag for questions about code (to be) compiled with a C++ compiler. Use a version specific tag for questions related to a specific standard revision [C++11], [C++17], etc.
How can I see the assembly code for a C++ program? What are the popular tools to do this?
How can the theoretical peak performance of 4 floating point operations (double precision) per cycle be achiev
I wrote these two solutions for Project Euler Q14, in assembly and in C++. They implement identical brute forc
I was looking for the fastest way to popcount large arrays of data. I encountered a very weird effect: Changin
Is if (a < 901) faster than if (a <= 900)? Not exactly as in this simple example, but there are slight p
I have a C++ application, running on Linux, which I'm in the process of optimizing. How can I pinpoint wh
I am Integrating Matlab, C and Cuda together in a project. I used Matlab mix in order to connect matlab mx fun
I read in a few articles that raw pointers should almost never be used. Instead they should always be wrapped