From 8e424e2f72e7cd3844725886ce7f5a9f47d4dab7 Mon Sep 17 00:00:00 2001 From: Blau Araujo Date: Mon, 9 Jun 2025 22:29:43 -0300 Subject: [PATCH] =?UTF-8?q?invers=C3=A3o=20de=20coment=C3=A1rios?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aulas/09-args/README.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aulas/09-args/README.org b/aulas/09-args/README.org index 1494758..f0afee6 100644 --- a/aulas/09-args/README.org +++ b/aulas/09-args/README.org @@ -41,8 +41,8 @@ int d3[] = {7,8,9}; int *v[] = {d1, d2, d3}; -printf("Tamanho de v : %zu\n", sizeof(v)); // Imprime 8. -printf("Tamanho de v[0]: %zu\n", sizeof(v[0])); // Imprime 24 (3*8). +printf("Tamanho de v : %zu\n", sizeof(v)); // Imprime 24 (3*8). +printf("Tamanho de v[0]: %zu\n", sizeof(v[0])); // Imprime 8 (Endereço tem 8 bytes). printf("Tamanho de d1 : %zu\n", sizeof(d1)); // Imprime 12 (3*4). #+end_src