Does character array in java has '\0' by default in the end?
For example:
char[] ch = {'t', 'h', 'e', ' ', 'd', 'o', 'g', ' ', ' ', ' ', ' ', ' ', ' '};
The Length of above character arrays is 13. So, if I want to start from backwwards then can I initialize a variable calles, newlength = '\0' and start working
backwards?
Please clarify.
Thanks

