Skip to content

Instantly share code, notes, and snippets.

@suryadharani
suryadharani / Determinant.cpp
Last active February 16, 2018 21:25
Determinant of a n-by-n matrix using recursive function(s) in C++
#include<iostream.h>
#include<conio.h>
#include<math.h>
class matrix
{
int a[10][10],n;
public:
matrix();
void seeMat();
void detmnt();