Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions data/course-revision/1511-23T3/2d_malloc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading