Posts from C++

Operator Overloading in C++

By Astha Awasthi

In this C++ tutorial, we are going to discuss the operator overloading and its implementation. What is Operator Overloading? The ability of the operator to operate with some specia.... Read More

First Repeated Character in a String in C++

By Astha Awasthi

In this CPP tutorial, we are going to discuss about the first repeating character in a string using set. Here, we go through some prerequisites of set that we need in the code :- W.... Read More

Virtual Destructor in C++

By Astha Awasthi

In this C++ tutorial, we are going to discuss the destructor, virtual destructor, its implementation and when to use virtual destructor. Why Virtual Destructor When we need to dele.... Read More

Find and replace a word in a given sentence or string in C++

By Astha Awasthi

In this C++ tutorial, we are going to discuss how to find all the occurrences of a word in a given sentence or string and replace it with a particular word. This feature can be see.... Read More

Removing double quotes from string in C++

By Deepshi Sharma

In this tutorial, we are going to learn how to remove double quotes from a string in C++. We can do this by using erase() function. Basically, what is the work of erase() function?.... Read More

How to implement Priority Queue in C++

By Astha Awasthi

In this C++ tutorial, we are going to discuss priority queue and its implementation in C++. What is Priority Queue ? Priority Queue is a container in which every element has a prio.... Read More

Linked List Reverse Order using C++ STL

By Ravi Raj

In this c++ tutorial, we are going to discuss how to print a linked list in reverse order using C++ STL library. Here we will learn the following things: List in C++ Insert element.... Read More

Reverse Order Array in CPP

By Ravi Raj

In this c++ tutorial, we are going to discuss how to print an array in reverse order in O(n) time complexity and without using any temporary array. Let’s reverse an array in .... Read More

Related Posts