cyclogenesis wrote
because that's what p points to.
This would have caused me to re-record that bit of the video. He misspoke. p does not point to 0, it is 0. In C:
int* p;
assert(p == 0);
assert(*p == 257);
It seems to me that you understand the ideas - the presenter was just a bit confusing here.