Hey Hassan, could u tell me if this is right? i want a better understanding of arrays. does an array start with 0 or 1?
if bool [3] = {true, true, true};
would it be listed like this?
a)
bool [0] = true;
bool [1] = true;
bool [2] = true;
or
b)
bool[1] = true;
bool[2] = true;
bool[3] = true;