Posts from C++

How to swap values in a vector in C++

By Paras Bhargava

In this tutorial, we are going to learn how to swap values in a vector in C++. This topic is quite useful and is used often while working with vectors. A step-by-step process will .... Read More

Element wise multiplication of two vectors in C++

By Paras Bhargava

In this tutorial, we will learn how to do Element wise multiplication of two vectors in C++. First of all, we must have a basic understanding of vectors in C++. Arrays are static a.... Read More

Convert an array to vector in C++

By HARI HARAN B

This article is going to show how to convert an array to a vector in C++ with the help of examples. The vector is a dynamic array. Thus, we can convert an array to a vector without.... Read More

How to turn off a particular bit in a number in C++ ?

By Abhishek Sharma

In this tutorial, we will see how to turn off a particular bit in a number in C++. Any number can be represented in its binary form which contains 0s and 1s. And we want to convert.... Read More

_Find_next() function in C++ bitset

By Abhishek Sharma

Hello there! In this tutorial, you will learn about working of _Find_next() which is a built-in function of the bitset class. First, let us see what is a bitset. A Bitset stores bi.... Read More

Return array from function by reference in C++

By Harsh Singh

Here we will learn how to return an array by reference from a function in C++. We can achieve this in multiple ways. Let’s check these out: First Method: by creating the arra.... Read More

The difference between push_back and insert in C++

By HARI HARAN B

The push_back and insert functions insert elements into many STL containers like the vector, list, and deque. In this article, we will compare the differences between the two with .... Read More

How to delete files less than specific size in C++

By Harsh Singh

In this article, we will learn how to delete files that are less than a given specific size from a directory in C++. We will follow the following steps for this – Open the di.... Read More

Related Posts