How to remove special characters from a string in C++

By Gagan Gupta

In this tutorial, we will learn how to remove special characters from a given string in C++.   #include <iostream> using namespace std; int main() { string str="co//de??.... Read More

Find the average value from an array in Swift

By Shubhodh Amaravadi

In this Swift programming tutorial, we are going to learn how to find the average value from an array. We can easily find the average of all the elements of an array using the foll.... Read More

return statement in C++ with Examples

By Raghav Khandelwal

In this tutorial, we are going to learn about return statements in C++ along with some examples. To get a clear understanding of the topic first let us understand what are return s.... Read More

Find pairs in array whose sums already exist in array in Python

By Premkumar Vemula

In this article, we are basically going to solve an easy problem using two different data structures. The problem statement being we have to find all the pair of integer elements f.... Read More

How to check if a class is a subclass or not in Python

By Shubhodh Amaravadi

In this tutorial, we are going to learn how to check if a class is a subclass or not in Python. Inheritance is an Object-oriented programming feature that helps a class to inherit .... Read More

Remove specific substring from string in C++

By Gagan Gupta

In this tutorial, we will learn how to remove some specific substring from a given string using inbuilt functions of the string library in the C++ programming language. #include &l.... Read More

How to get the children of a tag in BeautifulSoup Python

By Chaithanya Pranav Sai

In this tutorial, we are going to learn how to get the children of a tag in BeautifulSoup. We can find the children of any tag in two ways. By Knowing the class name and finding th.... Read More

Create a 2d array dynamically using pointers in C++

By Raghav Khandelwal

In this tutorial, we will learn how to create a 2D array dynamically using pointers in C++. First, let us understand what is dynamic memory allocation. Memory in the C++ program is.... Read More

Related Posts