diff --git a/data/course-revision/1511-23T3/2d_malloc.mdx b/data/course-revision/1511-23T3/2d_malloc.mdx index 9b87d7c..11bfd6b 100644 --- a/data/course-revision/1511-23T3/2d_malloc.mdx +++ b/data/course-revision/1511-23T3/2d_malloc.mdx @@ -41,6 +41,7 @@ $ ./2d_malloc 10 10 - You may assume there is enough memory to allocate the array on the heap. - You may **not** store the arrays on the stack. +- Note that this is not a "true" 2D array, but rather a 1D array pointing to 1D arrays. There are slight differences (e.g. it is not stored contiguously in memory), but you don't need to worry about this, it can be "used as" a 2D array! - You do not need to worry about a horrific eldritch abomination destroying your computer midway through runtime. ## CSE Autotest