Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

cpp array init value

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
 
PREVIOUS NEXT
Tagged: #cpp #array #init
ADD COMMENT
Topic
Name
5+9 =