This is a simple question, but I can\'t seem to find a definitive answer.
If we have the following class:
class Test { ... char testArray[10]; ...
I believe that if you don't initialize it when you declare it, it can be set to anything. Sometimes it is an address or random looking value.
Best practice is to initialize after declaring.