Removed confusing explanation from 076

This commit is contained in:
Dave Gauer
2021-10-18 19:04:12 -04:00
parent ef4bd3c749
commit 4c7eebbbfc
2 changed files with 20 additions and 6 deletions

View File

@@ -59,10 +59,8 @@ pub fn main() void {
// demonstrate how they are similar and different.
//
// (It turns out that the array prints completely, including
// the sentinel 0 in the middle. The many-item pointer must
// stop at the first sentinel value. The difference is simply
// that arrays have a known length and many-item pointers
// don't.)
// the sentinel 0 in the middle. The many-item pointer stops
// at the first sentinel value.)
printSequence(nums);
printSequence(ptr);