Posts by Yash Shakya

Author Biographical Info: Electrical Engineering student from Central University of Karnataka
Ready to help :)
29 Feb. My Birth date
Rare but exists..so I am :>

How to find the sum of the given two matrices in C++

By Yash Shakya

In this program, we are going to find the sum of given two matrices in C++ with some basic commands and nested loop. This problem is based on the application of array. The logic to.... Read More

Find the transpose of a matrix in place of 3×3 matrix in C++

By Yash Shakya

In this C++ program, we are going to find the transpose of a given matrix in place with simple array commands and nested loop. This problem is based on the application of array whi.... Read More

How to print duplicate characters from a given string in C++

By Yash Shakya

In this C++ program, we are going to print duplicate characters from a given string with simple string commands and nested loop. This problem is based on the application of charact.... Read More

Find trace and normal of matrix in C++

By Yash Shakya

This C++ program is able to find the trace and normal of a matrix in the same way that we find in mathematics. Basically the trace of a matrix is the sum of main diagonal of a matr.... Read More

Find size of string without using library functions in C++

By Yash Shakya

In this tutorial, we will find the size of string without using library functions in C++. In many situations, you are compelled not to use library functions like strlen(). Well, in.... Read More

Find all pairs of number whose sum is equal to a given number in C++

By Yash Shakya

This C++ program is able to find all the pairs of numbers in an array whose sum is equal to a specific number by using a nested loop and conditional statements. This problem is bas.... Read More

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

Related Posts