Skip to content
Snippets Groups Projects
utils.c 164 B
Newer Older
#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]);
    } 
}