Posts from C++

Find nature of roots and actual roots of Quadratic equation in C++

By Yash Shakya

This C++ program is able to find nature or roots and the actual roots of given quadratic equations in C++ whose values are the user has entered. There is a method called quadratic .... Read More

Find the next greater number from the same set of digits in C++

By Yash Shakya

In this tutorial, we are going to find the next greater number from the same set of digits in C++. We can form many numbers by the different combination of a given set of digits in.... Read More

Switch statement in C++

By Yash Shakya

In this tutorial, we are going to learn about one of the basic statements used in C++ language that is switch statement in C++. If you are searching for syntax and a complete expla.... Read More

Boundary traversal of the Binary tree in C++

By Zeeshan Alam

In this tutorial, we will learn about how to find boundary traversal of the binary tree in C++. We will also see some examples to understand the concept in a better way. Boundary t.... Read More

How to add days to date in C++

By Muskan Agarwal

In this program, we will add a given number of days to the given date in C++. Here we will display the date after adding the days as given in input. We have different cases for add.... Read More

Rotate a Matrix in C++ ( Clockwise and Anticlockwise )

By Vishal Kumar

In this tutorial, we are going to learn how to rotate a  matrix in C++ in both clockwise and anticlockwise direction by 90 degrees. Let us understand what we need to do to solve t.... Read More

How to Validate a phone number in C++?

By Vishal Kumar

In this tutorial, we are going to learn how to Validate a phone number in C++. As you know area codes and phone numbers length are different for different regions, so we will try t.... Read More

How to print arrays’s mirror image of 2D array (3X3) in C++

By Yash Shakya

In this tutorial, we are going to write a program to enter integers in a 2D array (3X3) and display the array’s mirror image in C++. This program is a very important program .... Read More

Related Posts