From ecc285898960aacabba20a1c84487e030320615b Mon Sep 17 00:00:00 2001 From: Vladimir Kotal Date: Sun, 21 Apr 2024 18:53:08 +0000 Subject: [PATCH] Refresh HTML pages --- 09.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09.html b/09.html index 70ac05e1..1dc3af64 100644 --- a/09.html +++ b/09.html @@ -10327,7 +10327,7 @@

printf("%d\n", *pi); // will print 99 printf("%d\n", *p); // dereferencing (void *), will error out when compiled -

🔧 Verify that a staticly allocated 2D array is stored in one piece of +

🔧 Verify that a staticaly allocated 2D array is stored in one piece of memory, row by row.

Hint: you need to recast a 2D array to a 1D array, then print it as a single row. There are a few different ways to do it. Do not look at the