Reduced row echelon form: Difference between revisions

Content added Content deleted
No edit summary
Line 108: Line 108:
=={{header|C}}==
=={{header|C}}==
<lang c>#include <stdio.h>
<lang c>#include <stdio.h>
#define TALLOC(n,typ) (typ *)malloc(n*sizeof(typ))
#define TALLOC(n,typ) malloc(n*sizeof(typ))


#define EL_Type int
#define EL_Type int