Hi,

I'm starting to get confused here..if I want an array to hold 2 values, then should I write int values[1] or int values [2] ? I'm confused because of the 0 index.

Also, when I wish to have an array of string, then is it just char values[n][20] (where 20 is the number of maximum characters and n is how many strings I have in the array) ?