Skip to content
Snippets Groups Projects
Forked from GOSSA JULIEN / P4z
5 commits behind, 5 commits ahead of the upstream repository.
main.c 250 B
#include <stdio.h>
#include <stdlib.h>
#include "tris.h"
#include "utils.h"


int main() {
  int T1[5] ={3,2,5,1,4} ;

  int T2[8] ={3,2,8,4,1,6,7,5} ;

  affichertab(T1,5);
  printf("\n");

  triInsertion(T1,5);

  affichertab(T1,5);

  return 0;
}