Valeur d'initiation du tableau CPP

int array[100] = {-1}; // set first elem to -1 and the rest to 0
int array[100] = {0}; // set all to 0
int array[100] = {[0 ... 99]=-1}; // set the 0 to 99 (all) elements to -1
Clever Cowfish