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.

Read More »

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 […]

Read More »

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.

Read More »

postfix-expression

This program shows how to convert an infix expression to postfix expression. Before proceeding to program, first understand what is difference between infix expression and postfix expression. Infix notation: X + Y. Operators are written in-between their operands. Postfix notation (also known as “Reverse Polish notation”) : X Y + . Operators are written after […]

Read More »

The following program prints first 10 automorphic number.  I am giving you all brief introduction about what actually automorphic numbers are, assuming that some of you might not be aware about that.  In mathematics an automorphic number (sometimes referred to as a circular number) is a number whose square “ends” in the same digits as number itself. For example, 52 = 25, 62 = 36, 762 = […]

Read More »

Home | Contact Us | Sitemap