Posts from C++

Initialization of a Private Static Const Map in C ++

By Raj Anand

In this tutorial, we will be implementing a private static const map in C++. We will consider the example of car brands and their manufacturing country to show the implementation o.... Read More

Extract URL from a string in C++

By Sharath S

In this post, we are going to learn how to extract all possible URLs from a given string in C++. We have a library named Regular Expression Library (abbr. REGEX) to achieve our goa.... Read More

Passing a vector to a function in C++

By Sharath S

So in this post, we will learn two different ways in which a vector can be passed to a function. They are namely: Pass by Value and Pass by Reference. We will also see how passing .... Read More

Web Scraping using C++

By Sharath S

So in this post, I’ll be teaching you how Web scrapping is done in C++ and its libraries. Before starting anything, web scrapping refers to collecting useful information from.... Read More

Number of ways to reach from a starting position to an ending position in C++

By Vishal Kumar

In this tutorial, we are going to learn how to find the Number of ways to reach from a starting position to an ending position in a matrix type path in C++, considering we can only.... Read More

All Factors of a Natural Number in C++

By Raj Anand

In this tutorial, we will be looking at all the methods to find all factors of a natural number n. Query Given a natural number n, print all distinct factors of n. C++ Implementa.... Read More

Remove an element by value from a given vector in C++

By Sharath S

So in this post, we will discuss about removing elements by value from a vector in C++. First, we will look at some inbuilt functions that perform this task. Then we will create ou.... Read More

How to implement pop_front to a vector in C++

By Bhushan Patil

In this tutorial, we will see how to implement pop_front to a vector in C++. Before we proceed we should know some important terms, so what exactly vector is? Vector is a sequence .... Read More

Related Posts