在这里,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;
}