I tried to find documentation on this but there doesn't seem to be any definite answers to this. I tried in an example program, and it seems to \0
but is this reliable behavior? What does char() initialize to and is this in the C++ standard.
int main()
{
std::cout<<char()<<std::endl;
return 0;
}