#include <stdio.h> #include <stdlib.h> #include "utils.h" void affichertab(int* T, int s){ for(int i = 0; i < s; i++){ printf("%d \n",T[i]); } }