Write a c program to find out the sum of given H.P Series
Write a c program to find out the sum of given H.P.
C program to find the sum of series : 1/1! + 2/2! + 3/3! + ……n/n!
This is a program to find the sum of the series represented by n/n! . Value of the n is the input to the program.
Write a c program to find out the sum of G.P series
A series of numbers in which ratio of any two consecutive numbers is always a same number that is constant. This constant is called as common ratio.
Write a c program to find out the sum of in A.P. series
A series of numbers in which difference of any two consecutive numbers is always a same number that is constant. This constant is called as common difference.
Write a c program to find out the sum of series 1^3 + 2^3 + …. + n^3
Write a c program to find out the sum of series 1^3 + 2^3 + …. + n^3
Sum of the series 13 + 23 + 33 + … + n3 = (n (n+1)/2)2
Write a c program to find out the sum of series 1^2 + 2^2 + …. + n^2.
Write a c program to find out the sum of series 1^2 + 2^2 + …. + n^2.
Sum of the series 12 + 22 + 32 + … + n2 = n (n+1) (2n+1)/6
Write a c program to find out the sum of series 1 + 2 + …. + n.
Write a c program to find out the sum of series 1 + 2 + …. + n.
Sum of the series 1 + 2 + 3 + … + n = n (n+1)/2
C program to find determinant of a matrix
C Code to find determinant of a matrix, C program to calculate determinant of a matrix 2×2, 3×3
Recursive program in C to find the determinant of a matrix
This program calculates the determinant of a square matrix of any order using a recursive function. Uses a square matrix struct and related functions.
Strassen’s matrix multiplication program in C
What is the source code for Strassen’s matrix multiplication program?
Upper triangular matrix in c
Upper triangular matrix in c – Program to check upper triangular matrix or not and C Program to print or display upper triangular matrix of given matrix
Lower triangular matrix in c
Lower triangular matrix in c – Program to check lower triangular matrix or not and C Program to print or display lower triangular matrix of given matrix
C program to find Inverse of a matrix
write a C program to find inverse of a matrix
C program to find sum of Diagonal elements of a matrix
write a C program to find sum of Diagonal elements of a matrix
C program to find transpose of a matrix
This c program prints transpose of a matrix. It is obtained by interchanging rows and columns of a matrix.
keep looking »