Output (With 5 as size):
0 0 0 0 0 

It appears that the numbers array is initialized with 0.
However, if we use valgrind, we can see that the array is uninitialized since
we get an error message:
Conditional jump or move depends on uninitialised value(s)
Followed by a stack trace.