C++ Program to Convert Binary Number to Octal and vice-versa
The Octal numeral system uses the number 8 as its base. As a base-8 numeral system, it consists of only eight numbers: 0,1,2…
The Octal numeral system uses the number 8 as its base. As a base-8 numeral system, it consists of only eight numbers: 0,1,2…
A prime number is a whole number that is greater than one and the only factors of a prime number should be one and itself. S…
Factors are the numbers you multiply together to get another number. For example, you get 2 and 3 as a factor pair of 6. If …
We know how to calculate the expression 3 x 3. This expression can be written in a shorter way using something called expone…
The Fibonacci sequence is a set of numbers that starts with a one or a zero, followed by a one, and proceeds based on the ru…
The factorial function is a mathematical formula represented by an exclamation mark "!". In the Factorial formula …
A natural number is a number that occurs commonly and obviously in nature. As such, it is a whole, non-negative number. The …
This c program prints transpose of a matrix. It is obtained by interchanging rows and columns of a matrix.Transpose of a mat…
This c program add two matrices i.e. compute the sum of two matrices and then print it. Firstly user will be asked to enter …
Matrix multiplication in c language: c program to multiply matrices (two dimensional array), this program multiplies two mat…
Consider a set of equations in a matrix form Ax=b , where A is a upper triangular matrix with non-zero diagonal elements. Th…
We will now try to multiply two matrix by using the concept of operator overloading. The described way is very very easy to …