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 :>
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
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
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
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
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
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
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
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