From df4166167f2d1d7c7cffc65921b00392a6cc30d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=8E=9B=E2=8E=9D=20L=E2=88=86RBI=20=E2=8E=A0=E2=8E=9E?= <48409226+L4RBI@users.noreply.github.com> Date: Thu, 25 Feb 2021 21:16:56 +0100 Subject: [PATCH] Update Display.c idk what happened .-. --- .../Data Manipulation copy/Matrices/Display.c | 47 +++++++++++++++++++ 1 file changed, 47 insertions(+) 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