CODE:
int a[2]={5, 7};
tantamount to
CODE:
int a[2];
a[0]=5;
a[1]=7;
a[0]=5;
a[1]=7;
The array is filled with 0 index.
Care must be taken that there is no overflow of the array.
You can not fill the entire array.
At the moment, only one-dimensional static array can be initialized this way.