TP 13 exo1: Implement more asked features and test them
[TD_C.git] / TP_13 / exo1 / src / main.c
index 68b30087ae455f71e44db62e49cbb62f8161bac1..ea4abc39e67b739c04fcba45a5f142a0f2a31491 100644 (file)
@@ -1,9 +1,24 @@
+#include <stdlib.h>
 #include <stdio.h>
 
-#include "macros.h"
+#include "array.h"
+#include "utils.h"
+#include "io.h"
 
 int main() {
-    printf("Hello world\n");
+    int* tab = NULL;
+    unsigned tab_size = 0;
 
-    return 0;
+    tab = prompt_array(tab, &tab_size);
+
+    printf("%d\n", tab_size);
+
+    display_array(tab, tab_size);
+
+    sort_tab(tab, tab_size, ascending_and_odd);
+
+    display_array(tab, tab_size);
+
+    free_tab(tab);
+    exit(EXIT_SUCCESS);
 }