It could be a silly question, but how does the sizeof operator determine the size of an operand for an array when the number of array members is not sent in?
I am aware that it just returns the array's size in bytes rather than the whole number of items, but in order to do so, it still has to know when the array ends.
Just wondering how this works.