A declaration of a variable, eg. extern byte numbers2[MAX_NUMBERS2]; is telling the C compiler that there is an array variable called numbers2 ... ... <看更多>
The declaration syntax for an array in C takes the following form: ... Just like any other local variables, declaring an array does not initialize it. ... <看更多>