ここでは、comment2が完全に印刷されています。ここで、コメントは出力されず、プログラムはそのステートメントが実行されるとすぐに終了します。誰かが解決策を提供できますか?
#include <iostream>
int main()
{
const char * comment = 0;
const char * comment2 = "hello this is not empty";
std::cout << std::endl;
std::cout << comment2 << std::endl;
std::cout << "printing 0 const char *" << std::endl;
std::cout << comment << std::endl;
std::cout << "SUCCESSFUL" << std::endl;
}