在C中,我可以依赖于在所有情况下初始化为false的新bool吗?
bool *myBool = new bool(); assert(false == *myBool); // Always the case in a proper C++ implementation?