Posts from C++

How to find transpose of a matrix in C++

By Alok Singh

In this tutorial, we will learn how to find the transpose of a matrix in C++ and will understand the logic behind the program. Transpose of a matrix is a manipulation of a matrix s.... Read More

How to check the given matrix is magic square or not in C++

By Alok Singh

Hello, In this tutorial, we will learn how to check, whether a given matrix is a magic square matrix or not, with the algorithm and a C++ program. A magic square matrix is a square.... Read More

Program to calculate percentile of an array in C++

By Deviprasad D Mahale

In this tutorial,  you will be learning how to calculate the percentile of each element of an array in C++. The user will enter the size and elements of an array. The percentile o.... Read More

Job sequencing with deadlines in C++

By Sakshi Gupta

In this tutorial, we will see how to solve Job sequencing with deadlines in C++. Initially, we will understand what the problem is and will solve it using the greedy method. The Gr.... Read More

Convert Binary code to Gray code in C++

By Alok Singh

Gray code is a binary number system in which each successive value can only differ by one bit. In this tutorial, we will learn how to convert binary code to gray code in C++. How t.... Read More

Deletion of any Non-ascii characters present in C++

By Mriganka

If you were facing complexity in removing the presence of any Non-ASCII character from a String in C++. Then my friend you’ve come to the right place. In this tutorial, IR.... Read More

How to find the size of a folder in C++

By Muskan Agarwal

Here we see an approach using C++ to get the size of a folder. In this method, we use the string implementation and Windows API functions. The important two concepts are recursion .... Read More

Display Binary Numbers from 1 to N using Queue in C++

By Shanigaram Mahesh

In this tutorial, we will learn how to write the program to display binary numbers using queue. Let us start with the algorithm to print Binary Numbers from 1 to N using Queue in C.... Read More

Related Posts