标签: c++ pointers wchar
您好。我在上面的图片中有这些代码行。第二行打印地址。但我喜欢打印此地址的值,例如" Microsoft Loopback Adapter"。
怎么做?
答案 0 :(得分:3)
尝试使用std::wcout:
std::wcout << description << std::endl;
cout打印描述的指针值,因为它不会将description视为指向空终止字符串的指针。
cout
description