TP 13 exo1: create an array in the main()
[TD_C.git] / TP_13 / exo1 / src / main.c
index 68b30087ae455f71e44db62e49cbb62f8161bac1..1b93898fe8cea2126dcfd4162f9f95446f0b227f 100644 (file)
@@ -1,9 +1,13 @@
+#include <stdlib.h>
 #include <stdio.h>
 
-#include "macros.h"
+#include "array.h"
+#include "utils.h"
 
 int main() {
-    printf("Hello world\n");
+    int* tab = NULL;
+    create_tab(tab, 11);
+    const unsigned tab_size = ARRAY_SIZE(tab);
 
-    return 0;
+    exit(EXIT_SUCCESS);
 }