C Program to Find the Largest of three Numbers

In this tutorial, we will write a basic C Program to find the greatest of three numbers. You may go through the following topics in order to understand the C program. Algorithm to find the largest among three numbers C Program to find the Largest among three Numbers We will find the greatest of three … Read more

C Program to Find Transpose of a Matrix

In this tutorial, we will write a program on how to calculate the transpose of a matrix in C program. Let us first understand the transpose of a matrix. Transpose of a matrix in C: The new matrix obtained by exchanging the rows and columns of the original matrix is called a transpose matrix. It … Read more

C Program to Find Inverse of a Matrix

In this tutorial, you will learn to write a program to find the inverse of a matrix in C. Let us first start by understanding how to find the inverse of a matrix and the requirements to find it. In order to find the inverse of a matrix, Adjoint of a matrix The adjoint of … Read more

C Program for Strong Number

In this tutorial, we will learn about the strong number and write a C Program to find Strong Number. Strong Number Strong numbers are those numbers whose sum of the factorial of the individual digits is equal to the number itself. Example: 145 is a strong number. Explanation: 145 1! + 4! + 5! = … Read more

C Program for Pascal Triangle

In this tutorial, you will learn how to write a program to print Pascal’s Triangle in C. Before that you should be familiar with the following topic in C programming. Pascal’s triangle is one of the important examples that is taught to the student. The number outside Pascal’s triangle is zero (0), which is not … Read more

C Program to find Cosine value

In this tutorial, we will write a C Program to find Cosine series. Let us first by understanding what is cosine series. Cosine Series: It is a series used to find the value of cos(x), where x is the angle in degree which is converted to Radian. Formula: For Cos(x) series: Cos(x) = 1 – (x*2 / 2!) + … Read more