ASAman Sainiinamansainiblog.io路Mar 21, 2023 路 3 min readRuby gem for Novu Api'sIntroduction 馃憢 Novu is an open-source notification infrastructure designed to help engineering teams build rich product notification experiences without constantly reinventing the wheel. One such library is the Novu client library, which is used for...01J
ASAman Sainiinamansainiblog.io路Dec 13, 2020 路 2 min readHandling Divide by Zero Exception in C++Hello Learners, Today in this tutorial we will learn How to handle divide by zero exceptions in C++ with some easy and comprehensible examples. There are two types of statements in the program Normal statements and the other is Critical statements. L...00
ASAman Sainiinamansainiblog.io路Dec 13, 2020 路 2 min readError Stream Object in C++ with an exampleHello learners, today in this tutorial we will learn about the Error stream objects in C++. std:: cerr, std:: clog are the error stream objects and they are the instances of an ostream class that is used to print the errors from the program. It is go...00
ASAman Sainiinamansainiblog.io路Dec 13, 2020 路 2 min readIterator to last element in std::list in C++Hello learners, today in this tutorial we will learn about the list::end(). It is a predefined function in a C++ Standard Template Library(STL). It will return an iterator that is pertaining to the past-the-end item. Let鈥檚 understand this in more det...00
ASAman Sainiinamansainiblog.io路Jun 8, 2020 路 2 min readMove semantics in C++Hello Learners, Today in this tutorial we will learn about Move Semantics in C++ with some easy and comprehensible examples. New versions of C++ provide move semantics which makes it possible to eliminate unnecessary memory copies. With the help of m...00