TP 13 exo1: create an array in the main()
[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 }