TBThomas Brandoliingnommy.hashnode.dev·Mar 3, 2024 · 1 min readHow to change C++ Language Standard in JetBrains RiderProblem As a new Rider user, I encountered this error after starting my new C++ project, because the IDE Language Standard for C++ by default is C++14. 0>ConsoleApplication1.cpp(6,23): Error C7525 : inline variables require at least '/std:c++17' I s...00
TBThomas Brandoliingnommy.hashnode.dev·Aug 24, 2023 · 5 min readUnderstanding Operator Overloading in C++In this article, you will start to understand operator overloading in C++. What is it? Operator Overloading can give a special behavior (or meaning) to an operator when it is applied to an instance of a class or a user-defined data type. The problem ...00