is there any standard that I can rely on about how the rest of array members would be initialized in initializations like double a[100] = {0, 1}
or double a[100] = {1}
on my compiler the rest of the array members are initialized to zero (which is my desired behaviour) but I am concerned about portability of this,