/* Title To Calculate Determinant of a Matrix Using Recursion Author Ankit Chaudhary Author Email ankitchaudhary1985 [at] yahoo.co.in Description This is a simple program implementing the concept of recursion to calculate the determinant of a matrix of any order. Category C++ » Mathematics Hits 203 */ Code: //TO CALCULATE THE DETERMINANT OF MATRIX OF ANY ORDER USING RECURSION #include #include #include #include void main() { int determinant(int[5][5],int);// FUNCTIONS void read(int[5][5],int); void print(int[5][5],int); // PROTOYPES int a[5][5],l,n; int result; l1:clrscr(); cout<<" ENTER ORDER OF MATRIX(MAX. OF 4X4):"; cin>>l>>n; if(l!=n) { //TESTING CONDITION cout<<" SORRY!!!!!\n ONLY SQUARE MATRIX"; goto l1; } read(a,n); result = determinant(a,n); print(a,n); cout<<" THE DETERMINANT OF THE ABOVE MATRIX IS:"<>b[i][j]; } void print(int b[5][5],int m) { clrscr(); //FUNCTION FOR PRINTING MATRIX cout<<" MATRIX IS :- "; for(int i=0;i