X-Git-Url: https://git.piment-noir.org/?p=TD_C.git;a=blobdiff_plain;f=TP_13%2Fexo1%2Fsrc%2Fmain.c;h=1b93898fe8cea2126dcfd4162f9f95446f0b227f;hp=315ed331a2007a350bef7fdc06cf70478041aee0;hb=884e95575f85cb863b53910d203759a5cfc68d81;hpb=e40016767464ae5f361e1be20a9bbc6858878e5e diff --git a/TP_13/exo1/src/main.c b/TP_13/exo1/src/main.c index 315ed33..1b93898 100644 --- a/TP_13/exo1/src/main.c +++ b/TP_13/exo1/src/main.c @@ -1,8 +1,13 @@ #include #include +#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); exit(EXIT_SUCCESS); }