diff --git a/Algorithems/Data Manipulation copy/Matrices/Display.c b/Algorithems/Data Manipulation copy/Matrices/Display.c index e69de29..326b3c2 100644 --- a/Algorithems/Data Manipulation copy/Matrices/Display.c +++ b/Algorithems/Data Manipulation copy/Matrices/Display.c @@ -0,0 +1,47 @@ +#include +#include +#include"display.h" +// by debbah Mehdi Sofiane +// file containt display and create fonction for matrix + +// fonction to create matrix allocation +int ** create_Matrix(int n ){ + int i ; int **tab ; + //memory allocation for matrix + tab= (int**)(malloc(n* sizeof(int*))) ; + for( i=0;i