Monday, 25 August 2014

C++ program to add two sparse matrices

Here are two C++ programs two add two sparse matrices

Saturday, 23 August 2014

C++ program to find transpose of a sparse matrix

Transpose of a sparse matrix can be found by interchanging row to column and column to row

Tuesday, 19 August 2014

Monday, 7 July 2014

C++ program to divide two numbers

Here are the C++ programs to divide two numbers .Here I have given different methods like divide two numbers using division operator, without using division operator, using function, using recursion and using bitwise operator etc. These are discussed below.

Sunday, 6 July 2014

C++ program to multiply two numbers

Here are the C++ programs to multiply two numbers .Here I have given different methods like multiply two numbers using multiplication operator, without using multiplication operator, using function, using recursion and using bitwise operator etc.