From 8f928aa63c2c24e23c7881826cfbd5d31650d7f8 Mon Sep 17 00:00:00 2001 From: Orestis <orestis.malaspinas@pm.me> Date: Mon, 21 Nov 2022 17:50:29 +0100 Subject: [PATCH] typo --- slides/allocation_dynamique.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slides/allocation_dynamique.md b/slides/allocation_dynamique.md index ccf0102..ccf651e 100644 --- a/slides/allocation_dynamique.md +++ b/slides/allocation_dynamique.md @@ -142,7 +142,7 @@ void initialize_to(int32_t *p, size_t size, int32_t val) { ## Implémenter la fonction ci-dessous ```C -// alloue un tableau de taille 50 et l'initilise à -1 +// alloue un tableau de taille 50 et l'initialise à -1 int32_t *p = initialize_to(p, 50, -1); free(p); // ne pas oublier ``` -- GitLab