First page Back Continue Last page Graphics
sizeof
Gives you the number of bytes needed to store the argument.
sizeof(numbers)/sizeof(*numbers) returns the size of the array in the book example.
sizeof(int) is typically 4
sizeof(double) is typically 8
Implementation dependent.