C Source Codes List | Source Code Home
Program : Program to find the determinant of a matrix.
#include
#include
#define LIMIT 10
void main()
{
int chckdgnl();
float deter();
float a[LIMIT][LIMIT],value;
int i,j,order;
clrscr();
printf("Enter order of determent :");
scanf("%d",&order);
for(i=0;i
C Source Codes List | Source Code Home
|
|