考虑打印两个字符串的代码的简单片段
“省略号之前”和“省略号之后”由字符省略号分隔。 令人惊讶的是,字符串“After ellipsis”未在控制台中打印
int _tmain(int argc, _TCHAR* argv[])
{
wcout<< "Before ellipsis" << endl;
wcout << L"…" << endl;
wcout << "L After ellipsis" << endl;
return 0;
system("pause");
}