1b93898fe8cea2126dcfd4162f9f95446f0b227f
[TD_C.git] / TP_13 / exo1 / src / main.c
1 #include <stdlib.h>
2 #include <stdio.h>
3
4 #include "array.h"
5 #include "utils.h"
6
7 int main() {
8 int* tab = NULL;
9 create_tab(tab, 11);
10 const unsigned tab_size = ARRAY_SIZE(tab);
11
12 exit(EXIT_SUCCESS);
13 }