Hi alltogether,
I am just wondering, which value the default constructor of bool type returns in C++. For instance writing such a code
int i = int();
guarantees that the variable i will be initiated always with 0.
I guess such an initialization routine is possible as well
bool b = bool();
But unfortunately I could not find anywhere which value such a default bool constructor is defined to return. Is the variable b always initialized with false or true. Can anyone help me?
Thanks in advance