@anderzom Okay, let me walk you through what happens there.
int bucky[] = {10,20,30}; means that bucky[0] = 10, bucky[1] = 20, and bucky[2] = 30.
The for loop has an iteration for each index of bucky, which means that the for loop will be worked through 3 times, since you have three indexes of bu...
@anderzom Okay, let me walk you through what happens there.
int bucky[] = {10,20,30}; means that bucky[0] = 10, bucky[1] = 20, and bucky[2] = 30.
The for loop has an iteration for each index of bucky, which means that the for loop will be worked through 3 times, since you have three indexes of bu...