Skip to content
Snippets Groups Projects
tableau.h 239 B
Newer Older
#ifndef TABLEAU_H
#define TABLEAU_H

#include <stdlib.h>
#include <stdio.h>
// #include "tableau.c"

typedef struct
{
    int *valeurs;
    int taille;
} tableau;

extern tableau t; //Il faut déclarer la variable t comme extern 


#endif