#include <stdio.h>
int main(void) {
int memo[1000];
for (int i = 0; i < 1000; i++) {
printf("%d\t", memo[i]);
}
return 0;
}
I thought everything should be initialized to 0 but it is not. Is there any reason for this? Thank you so much for your help.
From the C Standard (6.7.9 Initialization)
and
Thus in this program
the array
memo
has the automatic storage duration and according to the provided quote from the C Standard its elements have indeterminate values.You could declare the array like
In this case the first element of the array is explicitly initialized by 0 and all other elements are implicitly initialized also by 0.
You could select any element of the array to be explicitly initialized like for example
If you would write
or
then elements of the array will be zero-initialized because a variable declared in a file scope or with the storage specifier
static
has the static storage duration.