Category Archives: c++

How To Reverse An Array In C++ Using Functions

In this tutorial, we will see how to reverse an array in C++ using functions. It is essential to understand the concept of arrays and functions in C++ before attempting this tutorial. Reversing an array means changing the order of its elements so that the first element becomes the last, the second element becomes the second last, and so on.

Continue reading

How To Demangle C++ Symbols

One of the challenges that come with working with C++ code is dealing with “mangled” symbols.

These symbols are used by the C++ compiler to encode names of functions, variables, and other symbols.

Demangling symbols is the process of converting these encoded symbols into a human-readable format to make them easier to understand. In this tutorial, we’ll go over how to demangle C++ symbols.

Continue reading