I have a question about termination zero '\0' in an array of characters. Lets say I create:

char array[10];

My Question is: Is the will the terminating zero be at array[9]? Or is there memory for 10 chars, index 0-9?