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