blob: 2bad0e6677b6c84db24f6477bf89756c52962d33 [file] [log] [blame] [view] [edit]
It's possible to declare variables first, and initialize them later. But, this
form is seldom used, as it may lead to the use of uninitialized variables.
{declare.play}
The compiler forbids use of uninitialized variables, as this would lead to
undefined behavior.