Transpose of a matrix is the property to interchange rows and columns of matrix i.e row will become the column of resultant matrix and column will become the row of resultant matrix.
Category: C++ programs
This program computes multiplication of two matrices . In this we ask user to enter order or size of matrix A then entered elements for matrix A, same procedure goes for matrix B. But the multiplication does not yield the same process as in case of addition or subtraction of two matrices.
In this program we compute subtraction of two matrices A and B which has same order. First we ask user to enter order or size of matrix, then enter numbers for matrix A and B. In this elements of matrix B subtract from corresponding elements of matrix A . After that gives resultant matrix. To […]
In this program we compute addition of two matrices A and B which has same order. First we ask user to enter order or size of matrix, then enter numbers for matrix A and B. To understand the strategy, let us have look at the dummy matrices. Suppose matrices have order 3×3.
A Prime Number is a number which can be divided only by 1 or by itself. And it must be a whole number greater than 1. No even number, except 2, is prime number as 2 is divided by 1 or 2 only i.e by 1 or by itself.
//Implementation of Tic Tac Toe program #include <iostream.h> #include <stdlib.h> #include <time.h>