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