blob: 4c450a4bb9ede612d247fcad88a031217f1e39a1 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef QUESTION_1_H
#define QUESTION_1_H
int *alloue_tableau(int n);
int *desalloue_tableau(int *t, int n);
void remplir_tableau(int *t, int n, int V);
void afficher_tableau(int *t, int n);
#endif // QUESTION_1_H
|