Hello ))
please tell me - where's the bug in this code -
main()
{ short int n = 0;
n=[U]getdet[/U] ( **m , n);
}
[B]short int ** [U]getdet[/U] (short int **m , int n) /*вычисляем определитель матрицы*/
{ short int c=0;
if (n==1) return **m;
}[/B]
compiler reports the following -
Type mismatch in redeclaration of 'getdet'