EXCEPTION HANDLING IN C++

C++ Exception Handling Best Practices: 7 Things To Know

Reading Time: 11 minutes Exception handling in C++ is a well-unschooled topic if you observe initial stages of the learning curve. There are numerous tutorials available online on exception handling in C++. But few explains what you should not do & intricacies around it. […]

21 new features of Modern C++ to use in your project, Move Constructor & Assignment Operator, unique_ptr with example in C++

Understanding unique_ptr with Example in C++11

Reading Time: 6 minutes The smart pointers are a really good mechanism to manage dynamically allocated resources. In this article, we will see unique_ptr with example in C++11. But we don’t discuss standard smart pointers from a library. Rather, we implement our own smart […]