I just created an array with size 10
int array[10];
Afterwards i wanted to check the values
for(int i = 0; i < 10; i++){
printf("%d\n", array[i]);
}
But the output was different from my expectation. I though that all the values should be 0, but the output says the following:
1996260900
1
0
1995115336
78836
78796
0
68600
0
0
Why is that?
Thanks in advance!