if you really need the extra speed of a variable not being initialized when it's declared, then you can initialize it to void.
It's also worth noting that default-initialization may be elided when the optimizer finds that the variable is definitely initialized before use later in the code. -- Simen