Posts from C++

Swap two numbers without using third variable in C++

By Yash Shakya

In this tutorial, we will learn how to swap two numbers without using a third variable in C++ While we are doing programming at a professional level there will be a requirement of .... Read More

To implement Stack using Two Queues in C++

By Shanigaram Mahesh

In this tutorial, we will learn how to implement stack using queues in C++. Let us start with the algorithm. Algorithm: Stack using two queues in C++ When calling the push function.... Read More

Print a given matrix in counter-clockwise spiral form in c++

By Manisha Rathore

In this tutorial, we will learn how to print a given matrix in the counter-clockwise spiral form in c++. Also, given an RxC matrix, we will print the matrix in the counter-clockwis.... Read More

How to remove or eliminate the extra spaces from a given string in C++

By Yash Shakya

In this tutorial, we are going to eliminate or remove the extra spaces from a given string in C++. It is a basic question which is based on the concept of arrays. This technique is.... Read More

Convert feet to meter in C++ programming

By Krishna Priya

In this tutorial, we will learn how to convert feet into the meter in C++ programming with some easy examples. In some situations, we might have come up with this type of requireme.... Read More

Program to reverse a Two Dimensional Array using C++

By Kanwaljeet Singh

In this tutorial, we will focus on how to reverse a 2D array in C++. Matrix is an inevitable part of mathematics. It is used in many statistical as well data storage systems. Simpl.... Read More

Program to find the area of the parallelogram in C++

By Tabassum Tanveer

In this c++ program, we will calculate the area of the parallelogram. Before going to the program let us know what is a parallelogram. A parallelogram is a four-sided quadrilateral.... Read More

How to implement polymorphism in C++

By Adrika Roy

In this tutorial, we will see what is polymorphism and then understand how to implement it in C++. Introduction to Polymorphism in C++ The word polymorphism is made up of two words.... Read More

Related Posts